From 9a023a2c5805deda8c4b314c5aec7ff401e9b04f Mon Sep 17 00:00:00 2001 From: Natasha Moongrave Date: Mon, 2 Feb 2026 11:00:53 +0100 Subject: added required packages for hyprland --- hardware-configuration.nix | 5 +++-- modules/home/hyprland/default.nix | 2 +- modules/home/hyprland/dunst.nix | 7 +++++++ modules/home/hyprland/hyprland.nix | 5 +++++ modules/home/hyprland/kitty.nix | 2 +- mun.nix | 1 + 6 files changed, 18 insertions(+), 4 deletions(-) create mode 100644 modules/home/hyprland/dunst.nix diff --git a/hardware-configuration.nix b/hardware-configuration.nix index 8419d66..f68e8fe 100755 --- a/hardware-configuration.nix +++ b/hardware-configuration.nix @@ -4,8 +4,9 @@ { config, lib, pkgs, modulesPath, ... }: { - imports = - [ (modulesPath + "/installer/scan/not-detected.nix") + imports = [ + (modulesPath + "/installer/scan/not-detected.nix") + ./modules/home/hyprland/hyprland.nix ]; boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "sd_mod" ]; diff --git a/modules/home/hyprland/default.nix b/modules/home/hyprland/default.nix index 67ead8f..915c8c1 100644 --- a/modules/home/hyprland/default.nix +++ b/modules/home/hyprland/default.nix @@ -2,6 +2,6 @@ { imports = [ - ./hyprland.nix + ./kitty.nix ]; } \ No newline at end of file diff --git a/modules/home/hyprland/dunst.nix b/modules/home/hyprland/dunst.nix new file mode 100644 index 0000000..98329dd --- /dev/null +++ b/modules/home/hyprland/dunst.nix @@ -0,0 +1,7 @@ +{ pkgs, ... }: + +{ + services.dunst = { + enable = true; + } +} \ No newline at end of file diff --git a/modules/home/hyprland/hyprland.nix b/modules/home/hyprland/hyprland.nix index 8712df9..9a65a0b 100644 --- a/modules/home/hyprland/hyprland.nix +++ b/modules/home/hyprland/hyprland.nix @@ -4,4 +4,9 @@ programs.hyprland = { enable = true; }; + + environment.systemPackages = with pkgs; [ + qt6.qtwayland + qt6.qttools +]; } \ No newline at end of file diff --git a/modules/home/hyprland/kitty.nix b/modules/home/hyprland/kitty.nix index 30f35d5..11d4054 100644 --- a/modules/home/hyprland/kitty.nix +++ b/modules/home/hyprland/kitty.nix @@ -3,5 +3,5 @@ { programs.kitty = { enable = true; - } + }; } \ No newline at end of file diff --git a/mun.nix b/mun.nix index 3be52b4..6c6144a 100755 --- a/mun.nix +++ b/mun.nix @@ -3,6 +3,7 @@ { imports = [ ./modules/home/hyprland/default.nix + ./modules/home/i3wm/default.nix ]; home = { username = "mun"; -- cgit v1.2.3