ref(nix): sorted into modules

This commit is contained in:
Léana 江 2023-12-24 21:14:54 +01:00 committed by Léana 江
parent c228945485
commit 7a39b3e3fd
12 changed files with 2630 additions and 217 deletions

View file

@ -0,0 +1,24 @@
{
pkgs,
unstable,
...
}: {
users.users.leana = {
shell = pkgs.fish;
isNormalUser = true;
description = "leana";
extraGroups = ["networkmanager" "wheel"];
packages = with pkgs; [
# Window Manager related
dmenu
xmobar
scrot
xscreensaver
trayer
xclip
# GUI apps
# discord
];
};
}