diff --git a/system/default.nix b/system/default.nix index ec2c2d50..2bf9b07c 100644 --- a/system/default.nix +++ b/system/default.nix @@ -297,6 +297,11 @@ libinput.enable = true; }; + programs.hyprland = { + enable = true; + nvidiaPatches = false; + }; + # XDG xdg.portal = { enable = true; diff --git a/system/nixinator/default.nix b/system/nixinator/default.nix index cc1c3306..ceabc0e7 100644 --- a/system/nixinator/default.nix +++ b/system/nixinator/default.nix @@ -27,19 +27,4 @@ # videoDrivers = [ "nvidia" ]; # NVIDIA videoDrivers = ["amdgpu"]; }; - - programs.hyprland = { - enable = true; - nvidiaPatches = false; - # recommendedEnvironment = true; - - # NOTE: System module hyprland is configured in ~/.config/hypr/ - # TODO: Lib function to generate this file from my hyprland module - # extraConfig = '' - # bind = SUPER,a,exec,rofi -show drun - - # exec-once = dunst & # Notification daemon - # exec-once = ${pkgs.libsForQt5.polkit-kde-agent}/libexec/polkit-kde-authentication-agent-1 - # ''; - }; }