summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevin Finlinson <devin.finlinson@pm.me>2026-02-20 16:31:47 -0700
committerDevin Finlinson <devin.finlinson@pm.me>2026-02-20 16:31:47 -0700
commit3d9bafe1d6ca3469cc7c272054404e0ce021b513 (patch)
tree474da6c65387dba3fb840a827b8f2fb39b79d3cb
parent52ff830ed775d7d0992a6a14875a4d53b6a4e7c5 (diff)
clean up desktop utilites
-rw-r--r--flake.nix4
-rw-r--r--home-manager/home.nix4
-rw-r--r--home-manager/tiling-wm.nix9
3 files changed, 11 insertions, 6 deletions
diff --git a/flake.nix b/flake.nix
index e14507f..0d58a36 100644
--- a/flake.nix
+++ b/flake.nix
@@ -245,7 +245,7 @@
modules = minimalHomeManagerSettings ++ [ ./machines/khad
# lix-module.nixosModules.default
sops-nix.nixosModules.sops
- home-manager.nixosModules.home-manager { home-manager.users.defin = import ./home-manager/home.nix; }
+ home-manager.nixosModules.home-manager { home-manager.users.defin = import ./home-manager/tiling-wm.nix; }
];
};
zenbook = lib.nixosSystem { # Personal laptop
@@ -253,7 +253,7 @@
modules = minimalHomeManagerSettings ++ [ ./machines/zenbook
# lix-module.nixosModules.default
# hyprland.homeManagerModules.default {wayland.windowManager.hyprland.enable = true;}
- home-manager.nixosModules.home-manager { home-manager.users.defin = import ./home-manager/home.nix; }
+ home-manager.nixosModules.home-manager { home-manager.users.defin = import ./home-manager/tiling-wm.nix; }
];
};
diff --git a/home-manager/home.nix b/home-manager/home.nix
index 3192af9..aa3ba62 100644
--- a/home-manager/home.nix
+++ b/home-manager/home.nix
@@ -6,10 +6,6 @@
{
imports = [
./default.nix
- ../modules/home-manager/waybar.nix
- ../modules/home-manager/swaylock.nix
- ../modules/home-manager/swayidle.nix
- ../modules/home-manager/hypridle.nix
];
diff --git a/home-manager/tiling-wm.nix b/home-manager/tiling-wm.nix
new file mode 100644
index 0000000..be64d08
--- /dev/null
+++ b/home-manager/tiling-wm.nix
@@ -0,0 +1,9 @@
+{ pkgs, hyprland-plugins, ... }: {
+ imports = [
+ ./home.nix
+ ../modules/home-manager/waybar.nix
+ ../modules/home-manager/swaylock.nix
+ ../modules/home-manager/swayidle.nix
+ ../modules/home-manager/hypridle.nix
+ ];
+}