summary refs log tree commit diff stats
path: root/hm
diff options
context:
space:
mode:
authorSilas Schöffel <sils@sils.li>2024-06-02 14:38:57 +0200
committerSilas Schöffel <sils@sils.li>2024-06-02 14:38:57 +0200
commitc04d34ab44a1bd2b0118736d4a9a796f1c700eb2 (patch)
tree53f7b0e4fce40d066a08dbae0f213f4f4ea50f09 /hm
parenthyprland: init module (diff)
downloadnix-config-c04d34ab44a1bd2b0118736d4a9a796f1c700eb2.tar.gz
nix-config-c04d34ab44a1bd2b0118736d4a9a796f1c700eb2.zip
sway: init module
This inits both the nixos and the home-manager module
Diffstat (limited to 'hm')
-rw-r--r--hm/default.nix2
-rw-r--r--hm/sway/default.nix7
2 files changed, 1 insertions, 8 deletions
diff --git a/hm/default.nix b/hm/default.nix
index 4a0e255..7d6e482 100644
--- a/hm/default.nix
+++ b/hm/default.nix
@@ -9,7 +9,6 @@
     ./packages
     ./rofi
     ./ssh
-    ./sway
     ./swayidle
     ./swaylock
     ./swayosd
@@ -37,6 +36,7 @@
     jameica.enable = true;
     kdeconnect.enable = true;
     mail.enable = true;
+    sway.enable = true;
     zathura.enable = true;
   };
   programs.home-manager.enable = true;
diff --git a/hm/sway/default.nix b/hm/sway/default.nix
deleted file mode 100644
index 794c681..0000000
--- a/hm/sway/default.nix
+++ /dev/null
@@ -1,7 +0,0 @@
-{...}: {
-  wayland.windowManager.sway = {
-    enable = true;
-    config = {
-    };
-  };
-}