added wm installations

This commit is contained in:
2024-08-13 19:42:30 +09:00
parent ae59ef84f8
commit 043c527b64
15 changed files with 142 additions and 43 deletions

12
system/wm/sway.nix Normal file
View File

@@ -0,0 +1,12 @@
{ pkgs, lib, config, ... }:
{
imports = [
./gnome-keyring.nix
./dbus.nix
];
programs.sway = {
enable = true;
wrapperFeatures.gtk = true;
};
}