fix: add userName argument to flake.nix

This commit is contained in:
2025-12-19 02:44:02 -05:00
parent f082e5a1d3
commit 4d92882f4e
+6 -2
View File
@@ -24,12 +24,14 @@
};
};
outputs =
{ ... }@inputs:
{
{ ... }@inputs: let
userName = "autumn";
in {
nixosConfigurations = {
"january" = inputs.nixpkgs.lib.nixosSystem {
specialArgs = {
hostName = "january";
inherit userName;
inherit inputs;
};
@@ -39,6 +41,7 @@
"february" = inputs.nixpkgs.lib.nixosSystem {
specialArgs = {
hostName = "february";
inherit userName;
inherit inputs;
modules = [ ./host/pc/february/configuration.nix ];
@@ -47,6 +50,7 @@
"march" = inputs.nixpkgs.lib.nixosSystem {
specialArgs = {
inherit userName;
hostName = "march";
};