nix/users/admin-shell.nix

19 lines
219 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 = {
username = username;
homeDirectory = "/home/${username}";
stateVersion = "23.05";
};
}