aboutsummaryrefslogtreecommitdiffhomepage
path: root/nix
diff options
context:
space:
mode:
authorMihai Fufezan <[email protected]>2022-07-29 18:39:10 +0300
committerMihai Fufezan <[email protected]>2022-07-29 18:39:10 +0300
commit66680a1149be22d36cfd623cf5bbb7f9746e3fa6 (patch)
treef3c39024af375ff72277ee65fcc9f3e953f9e96d /nix
parentfd74208453c7776816084649ec576aa8f37c7cbb (diff)
downloadHyprland-66680a1149be22d36cfd623cf5bbb7f9746e3fa6.tar.gz
Hyprland-66680a1149be22d36cfd623cf5bbb7f9746e3fa6.zip
Nix: fix failing module
Diffstat (limited to 'nix')
-rw-r--r--nix/module.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/module.nix b/nix/module.nix
index 0c33aa6f..36c744f0 100644
--- a/nix/module.nix
+++ b/nix/module.nix
@@ -33,7 +33,7 @@ in {
};
config = mkIf cfg.enable {
- environment.systemPackages = [cfg.package] ++ cfg.extraPackages;
+ environment.systemPackages = [cfg.package];
security.polkit.enable = true;
hardware.opengl.enable = mkDefault true;
fonts.enableDefaultFonts = mkDefault true;