nix/users/admin-shell.nix

19 lines
216 B
Nix
Raw Normal View History

2024-01-11 07:25:57 +01:00
{ pkgs
, config
, inputs
, system
, username
, ...
}: {
imports = [
../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";
};
}