From f53dfd60cee74333fd8d2df023c2a184b4027ea4 Mon Sep 17 00:00:00 2001 From: ChUrl Date: Wed, 26 Apr 2023 09:17:01 +0200 Subject: [PATCH] Move hyprland to default system config --- system/default.nix | 5 +++++ system/nixinator/default.nix | 15 --------------- 2 files changed, 5 insertions(+), 15 deletions(-) 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 - # ''; - }; }