diff --git a/configuration.nix b/configuration.nix index ab88801..90a2ff3 100644 --- a/configuration.nix +++ b/configuration.nix @@ -9,6 +9,7 @@ ./services/virtual.nix ./services/x.nix ./services/sound.nix + ./programs/hyprland.nix ]; nixpkgs.config.allowUnfree = true; diff --git a/programs/hyprland.nix b/programs/hyprland.nix new file mode 100644 index 0000000..12e39aa --- /dev/null +++ b/programs/hyprland.nix @@ -0,0 +1 @@ +{ inputs, pkgs, ... }: { programs.hyprland = { enable = true; }; }