nix/users/admin-thin.nix

23 lines
314 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 = [
2023-11-09 19:33:08 +01:00
../home-mods/audio
2023-10-20 13:53:08 +02:00
../home-mods/common
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
];
config.home = {
2024-01-22 21:09:28 +01:00
inherit username;
2023-12-10 05:40:04 +01:00
homeDirectory = "/home/${username}";
stateVersion = "23.05";
};
2023-10-17 03:12:55 +02:00
}