From bc0f6c8508d2b5e232967dc158313b1830e383a1 Mon Sep 17 00:00:00 2001 From: Uzair Mohammed Date: Tue, 24 Dec 2024 19:49:48 -0800 Subject: [PATCH] 1: Enable Hyprland --- home/modules/default.nix | 2 +- home/modules/hyprland.nix | 8 ++++++++ system/modules/default.nix | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 home/modules/hyprland.nix diff --git a/home/modules/default.nix b/home/modules/default.nix index 4cb9ab1..26ef181 100644 --- a/home/modules/default.nix +++ b/home/modules/default.nix @@ -8,6 +8,6 @@ ./browsers.nix ./productivity.nix ./media.nix - #./neovim.nix + ./hyprland.nix ]; } diff --git a/home/modules/hyprland.nix b/home/modules/hyprland.nix new file mode 100644 index 0000000..289ae7c --- /dev/null +++ b/home/modules/hyprland.nix @@ -0,0 +1,8 @@ +{ + programs.kitty.enable = true; + programs.waybar.enable = true; + + wayland.windowManager.hyprland = { + enable = true; + }; +} diff --git a/system/modules/default.nix b/system/modules/default.nix index 6f988f7..bf350ae 100644 --- a/system/modules/default.nix +++ b/system/modules/default.nix @@ -4,7 +4,7 @@ ./graphics.nix ./powerManagement.nix ./wireless.nix - #./wayland.nix + ./wayland.nix ./syncthing.nix ./kdePlasma.nix ./media.nix