aboutsummaryrefslogtreecommitdiff
path: root/modules/home
diff options
context:
space:
mode:
Diffstat (limited to 'modules/home')
-rw-r--r--modules/home/hyprland/default.nix2
-rw-r--r--modules/home/hyprland/dunst.nix7
-rw-r--r--modules/home/hyprland/hyprland.nix5
-rw-r--r--modules/home/hyprland/kitty.nix2
4 files changed, 14 insertions, 2 deletions
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