nix/users/admin-thin.nix

23 lines
314 B
Nix
Raw Normal View History

2025-02-24 17:26:11 +01:00
{ 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";
};
}