nix/users/admin-fat.nix

28 lines
412 B
Nix
Raw Normal View History

{ pkgs
, config
, inputs
, system
2023-12-10 05:40:04 +01:00
, username
, ...
2023-10-21 03:33:27 +02:00
}: {
2023-10-17 03:12:55 +02:00
imports = [
2024-07-02 15:10:26 +02:00
../home-mods/activity-watch
2023-11-09 19:33:08 +01:00
../home-mods/audio
2023-10-20 13:53:08 +02:00
../home-mods/common
../home-mods/desktop
2023-10-17 03:12:55 +02:00
../home-mods/firefox
../home-mods/plasma
2023-10-20 13:53:08 +02:00
../home-mods/shell
2023-10-17 03:12:55 +02:00
../home-mods/virt
];
2023-12-10 05:40:04 +01:00
config = {
home = {
2024-01-22 21:09:28 +01:00
inherit username;
2023-12-10 05:40:04 +01:00
homeDirectory = "/home/${username}";
2023-12-10 05:40:04 +01:00
stateVersion = "23.05";
};
};
2023-10-17 03:12:55 +02:00
}