diff options
Diffstat (limited to 'modules/hosts/X230/configuration.nix')
-rw-r--r-- | modules/hosts/X230/configuration.nix | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/modules/hosts/X230/configuration.nix b/modules/hosts/X230/configuration.nix deleted file mode 100644 index accbb1c..0000000 --- a/modules/hosts/X230/configuration.nix +++ /dev/null @@ -1,30 +0,0 @@ -{ config, lib, pkgs, ... }: { - imports = [ - ./hardware-configuration.nix - ../../nixos/archetypes/tjkeller - ]; - - # Setup bootloader - boot._loader.enable = true; - - # Enable common options - _archetypes = { - # Use desktop profile - profiles.desktop.enable = true; - # Install software - collections = { - desktop = { - crypto.enable = true; - graphics.enable = true; - office.enable = true; - }; - }; - # Setup user - users.primary = { - enable = true; - autologin.enable = true; - }; - }; - - system.stateVersion = "24.05"; -} |