Gen 396: updated flake and input files to use a username special arg instead of hardcoding my username

This commit is contained in:
pagedMov
2024-10-11 23:51:59 -04:00
parent a31cbe4d7e
commit f8d099d40b
8 changed files with 24 additions and 28 deletions

View File

@@ -46,7 +46,7 @@
outputs = { nixpkgs, home-manager, self, nvim, toilet, ... }@inputs:
let
system = "x86_64-linux";
user = "pagedmov";
username = "pagedmov";
allowed-unfree-packages = [
"foundryvtt"
];
@@ -55,9 +55,7 @@
nixosConfigurations = {
glasshouse = nixpkgs.lib.nixosSystem {
specialArgs = {
inherit self;
inherit inputs;
inherit allowed-unfree-packages user;
inherit self inputs allowed-unfree-packages username;
};
inherit system;
modules = [ ./glasshouse-desktop/sys ];