feat: add nvf config
This commit is contained in:
parent
9e46058abb
commit
898d56ebd6
24 changed files with 3367 additions and 95 deletions
|
|
@ -1,11 +1,14 @@
|
|||
{ nix-version, username, ... }:
|
||||
|
||||
{
|
||||
imports = [ ./user ];
|
||||
home.username = username;
|
||||
home.homeDirectory = "/home/${username}";
|
||||
|
||||
home.stateVersion = nix-version;
|
||||
nix-version,
|
||||
username,
|
||||
...
|
||||
}: {
|
||||
imports = [./user];
|
||||
home = {
|
||||
inherit username;
|
||||
homeDirectory = "/home/${username}";
|
||||
stateVersion = nix-version;
|
||||
};
|
||||
|
||||
# Let Home Manager install and manage itself.
|
||||
programs.home-manager.enable = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue