From 1c9ffc8fa0135c8fb45498c4ffdc43b3699b9298 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kha=C3=AFs=20COLIN?= Date: Wed, 14 Aug 2024 12:10:46 +0200 Subject: [PATCH] fix(wm): include wm config --- nixos/home.nix | 1 + nixos/wm/default.nix | 8 ++++++++ 2 files changed, 9 insertions(+) create mode 100644 nixos/wm/default.nix diff --git a/nixos/home.nix b/nixos/home.nix index 1a5e8c9..e274536 100644 --- a/nixos/home.nix +++ b/nixos/home.nix @@ -3,6 +3,7 @@ in { imports = [ ./stylix.nix + ./wm ]; home = { packages = with pkgs; [ diff --git a/nixos/wm/default.nix b/nixos/wm/default.nix new file mode 100644 index 0000000..32e81a7 --- /dev/null +++ b/nixos/wm/default.nix @@ -0,0 +1,8 @@ +{ + imports = [ + ./river.nix + ./swaylock.nix + ./waybar.nix + ./wluma.nix + ]; +}