nix/users/admin-fat.nix

29 lines
450 B
Nix
Raw Normal View History

2025-02-24 17:26:11 +01:00
{ pkgs
, config
, inputs
, system
, username
, ...
}: {
imports = [
../home-mods/activity-watch
../home-mods/audio
../home-mods/common
../home-mods/desktop
2025-02-28 15:46:22 +01:00
# ../home-mods/firefox
../home-mods/firefox/floorp.nix
2025-02-24 17:26:11 +01:00
../home-mods/plasma
../home-mods/shell
../home-mods/virt
];
config = {
home = {
inherit username;
homeDirectory = "/home/${username}";
stateVersion = "23.05";
};
};
}