18 lines
216 B
Nix
18 lines
216 B
Nix
{ pkgs
|
|
, config
|
|
, inputs
|
|
, system
|
|
, username
|
|
, ...
|
|
}: {
|
|
imports = [
|
|
../home-mods/shell
|
|
];
|
|
|
|
config.home = {
|
|
inherit username;
|
|
homeDirectory = "/home/${username}";
|
|
|
|
stateVersion = "23.05";
|
|
};
|
|
}
|