9 lines
234 B
Nix
9 lines
234 B
Nix
{ ... }: {
|
|
imports = [ ../work.nix ];
|
|
# Home Manager needs a bit of information about you and the
|
|
# paths it should manage.
|
|
home.username = "elitherl";
|
|
home.homeDirectory = "/home/elitherl";
|
|
home.stateVersion = "22.11";
|
|
}
|