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