nix/users/admin-shell.nix

20 lines
240 B
Nix
Raw Normal View History

2025-02-24 17:26:11 +01:00
{ pkgs
, config
, inputs
, system
, username
, ...
}: {
imports = [
../home-mods/common
../home-mods/shell
];
config.home = {
inherit username;
homeDirectory = "/home/${username}";
stateVersion = "23.05";
};
}