add arbyd quickshell conf

This commit is contained in:
atagen 2025-07-21 00:53:00 +10:00
parent 63af9f8f3f
commit 8872a12d20
11 changed files with 867 additions and 0 deletions

View file

@ -3,6 +3,7 @@
lib,
inputs,
rice,
mainUser,
...
}:
let
@ -58,4 +59,17 @@ in
Requires = [ "graphical-session.target" ];
};
};
imports = [ inputs.arbys.nixosModules.arbys ];
environment = {
arbys = {
enable = true;
clobber = true;
};
files."/home/${mainUser}/.config/quickshell" = {
source = "/home/${mainUser}/.nix/desktop/quickshell";
uid = 1000;
gid = 100;
};
};
}