diff --git a/hosts/default/configuration.nix b/hosts/default/configuration.nix index 8761f7a..c53b12e 100644 --- a/hosts/default/configuration.nix +++ b/hosts/default/configuration.nix @@ -10,6 +10,7 @@ ./hardware-configuration.nix ../../modules/games/steam.nix ../../modules/websites + ../../modules/plasma ]; boot = { @@ -195,6 +196,7 @@ modules = { games.steam.enable = true; + plasma.enable = true; websites = { enable = true; certMail = "acme@voorwaarts.nl"; diff --git a/hosts/default/home.nix b/hosts/default/home.nix index ba31265..dba08d7 100644 --- a/hosts/default/home.nix +++ b/hosts/default/home.nix @@ -28,7 +28,6 @@ modules = { hyprland.enable = false; - plasma.enable = true; games.enable = true; apps = { enable = true; diff --git a/modules/default.nix b/modules/default.nix index 9a8e47c..d60d951 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -2,7 +2,5 @@ { imports = [ ./hyprland.nix - ./plasma - ./games ]; }