nix/users/admin-shell.nix

20 lines
240 B
Nix
Raw Normal View History

2024-01-11 07:25:57 +01:00
{ pkgs
, config
, inputs
, system
, username
, ...
}: {
imports = [
2024-08-15 09:08:55 +02:00
../home-mods/common
2024-01-11 07:25:57 +01:00
../home-mods/shell
];
config.home = {
2024-01-22 21:09:28 +01:00
inherit username;
2024-01-11 07:25:57 +01:00
homeDirectory = "/home/${username}";
stateVersion = "23.05";
};
}