diff --git a/systems/bob/configuration.nix b/systems/bob/configuration.nix index 2fab140..8e8f3ba 100644 --- a/systems/bob/configuration.nix +++ b/systems/bob/configuration.nix @@ -1,5 +1,6 @@ { imports = [ + ../../users/richie/global/desktop.nix ../../users/richie/global/syncthing_base.nix ../../users/richie/global/zerotier.nix ./hardware.nix @@ -33,15 +34,6 @@ displayManager.sddm.enable = true; - xserver = { - enable = true; - desktopManager.plasma5.enable = true; - xkb = { - layout = "us"; - variant = ""; - }; - }; - openssh.ports = [ 262 ]; printing.enable = true; diff --git a/systems/rhapsody-in-green/configuration.nix b/systems/rhapsody-in-green/configuration.nix index eb337e5..52e4f45 100644 --- a/systems/rhapsody-in-green/configuration.nix +++ b/systems/rhapsody-in-green/configuration.nix @@ -1,8 +1,9 @@ { imports = [ - ./hardware.nix + ../../users/richie/global/desktop.nix ../../users/richie/global/syncthing_base.nix ../../users/richie/global/zerotier.nix + ./hardware.nix ./steam.nix ]; @@ -32,15 +33,6 @@ displayManager.sddm.enable = true; - xserver = { - enable = true; - desktopManager.plasma5.enable = true; - xkb = { - layout = "us"; - variant = ""; - }; - }; - openssh.ports = [ 922 ]; printing.enable = true; diff --git a/users/richie/global/desktop.nix b/users/richie/global/desktop.nix new file mode 100644 index 0000000..6b14bbb --- /dev/null +++ b/users/richie/global/desktop.nix @@ -0,0 +1,12 @@ +{ + services = { + desktopManager.plasma6.enable = true; + xserver = { + enable = true; + xkb = { + layout = "us"; + variant = ""; + }; + }; + }; +}