From 82f0558c687d1b8e6bfe2a85c6b1fc0c0bbdeb9a Mon Sep 17 00:00:00 2001 From: Thomas Syms Date: Wed, 14 Aug 2024 15:51:48 -0300 Subject: [PATCH] Added hyprland to pegasus --- hosts/Pegasus/default.nix | 1 + modules/hyprland.nix | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 modules/hyprland.nix diff --git a/hosts/Pegasus/default.nix b/hosts/Pegasus/default.nix index b767d8d..145504b 100644 --- a/hosts/Pegasus/default.nix +++ b/hosts/Pegasus/default.nix @@ -13,6 +13,7 @@ in { ../../modules/virtualization.nix ../../modules/harden.nix ../../modules/kde.nix + ../../modules/hyprland.nix ]; # Set networking diff --git a/modules/hyprland.nix b/modules/hyprland.nix new file mode 100644 index 0000000..618450e --- /dev/null +++ b/modules/hyprland.nix @@ -0,0 +1,5 @@ +{...}: { + programs.hyprland = { + enable = true; + }; +}