nix/users/admin-thin.nix

22 lines
314 B
Nix

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