diff --git a/hosts/helios/default.nix b/hosts/helios/default.nix index 703d4bf..9162d6f 100644 --- a/hosts/helios/default.nix +++ b/hosts/helios/default.nix @@ -1,5 +1,12 @@ -{ pkgs, ... }: +{ + pkgs, + lib, + ... +}: +let + inherit (lib) mkForce; +in { imports = [ ./hardware-configuration.nix @@ -35,6 +42,10 @@ repoPath = "ssh://b9cjl9hq@b9cjl9hq.repo.borgbase.com/./repo"; }; }; + system.desktop = { + gnome.enable = mkForce false; + hyprland.enable = true; + }; }; system.stateVersion = "22.11";