nix/users/admin-thin.nix
2025-03-26 16:16:53 +01:00

22 lines
332 B
Nix

{ pkgs
, config
, inputs
, system
, username
, ...
}: {
imports = [
../home-mods/audio
../home-mods/common
../home-mods/firefox/zen-browser.nix
# ../home-mods/plasma
# ../home-mods/shell
];
config.home = {
inherit username;
homeDirectory = "/home/${username}";
stateVersion = "23.05";
};
}