This commit is contained in:
twoneis 2024-08-02 23:49:06 +02:00
parent 16fa4956e5
commit a5b5ea7f59
28 changed files with 164 additions and 123 deletions

View file

@ -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;
}