diff --git a/templates/clan/flake-parts/machines/jon/configuration.nix b/templates/clan/flake-parts/machines/jon/configuration.nix deleted file mode 100644 index 9fa9a41cd..000000000 --- a/templates/clan/flake-parts/machines/jon/configuration.nix +++ /dev/null @@ -1,38 +0,0 @@ -{ config, ... }: -let - username = config.networking.hostName; -in -{ - imports = [ ./hardware-configuration.nix ]; - - # Locale service discovery and mDNS - services.avahi.enable = true; - - services.xserver.enable = true; - services.xserver.desktopManager.gnome.enable = true; - services.xserver.displayManager.gdm.enable = true; - # Disable the default gnome apps to speed up deployment - services.gnome.core-utilities.enable = false; - - # Enable automatic login for the user. - services.displayManager.autoLogin = { - enable = true; - user = username; - }; - - users.users.${username} = { - initialPassword = username; - isNormalUser = true; - extraGroups = [ - "wheel" - "networkmanager" - "video" - "audio" - "input" - "dialout" - "disk" - ]; - uid = 1000; - openssh.authorizedKeys.keys = config.users.users.root.openssh.authorizedKeys.keys; - }; -} diff --git a/templates/clan/flake-parts/machines/sara/configuration.nix b/templates/clan/flake-parts/machines/sara/configuration.nix deleted file mode 100644 index df02f6cad..000000000 --- a/templates/clan/flake-parts/machines/sara/configuration.nix +++ /dev/null @@ -1,39 +0,0 @@ -{ config, ... }: - -let - username = config.networking.hostName; -in -{ - imports = [ ./hardware-configuration.nix ]; - - # Locale service discovery and mDNS - services.avahi.enable = true; - - services.xserver.enable = true; - services.xserver.desktopManager.gnome.enable = true; - services.xserver.displayManager.gdm.enable = true; - # Disable the default gnome apps to speed up deployment - services.gnome.core-utilities.enable = false; - - # Enable automatic login for the user. - services.displayManager.autoLogin = { - enable = true; - user = username; - }; - - users.users.${username} = { - initialPassword = username; - isNormalUser = true; - extraGroups = [ - "wheel" - "networkmanager" - "video" - "audio" - "input" - "dialout" - "disk" - ]; - uid = 1000; - openssh.authorizedKeys.keys = config.users.users.root.openssh.authorizedKeys.keys; - }; -}