why?
This commit is contained in:
parent
16fa4956e5
commit
a5b5ea7f59
28 changed files with 164 additions and 123 deletions
|
@ -1,5 +1,8 @@
|
|||
{ lib, config, ... }: {
|
||||
{ config, ... }: let
|
||||
inherit (config) conf;
|
||||
in {
|
||||
imports = [
|
||||
./apps
|
||||
./containers
|
||||
./fonts
|
||||
./games
|
||||
|
@ -10,7 +13,6 @@
|
|||
./niri
|
||||
./nix
|
||||
./secureboot
|
||||
./user
|
||||
./utils
|
||||
./vm
|
||||
];
|
||||
|
@ -29,11 +31,11 @@
|
|||
};
|
||||
};
|
||||
|
||||
users.users.${config.username}= {
|
||||
users.users.${conf.username}= {
|
||||
isNormalUser = true;
|
||||
description = config.username;
|
||||
description = conf.username;
|
||||
extraGroups = [ "networkmanager" "wheel" ];
|
||||
};
|
||||
|
||||
system.stateVersion = config.stateVersion;
|
||||
system.stateVersion = conf.stateVersion;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue