fix: resolve the errors in the february host configuration; feat: update flake.lock

This commit is contained in:
2026-02-17 15:41:37 -05:00
parent 4f820f94ab
commit 8b0466f49b
5 changed files with 97 additions and 143 deletions
+6 -4
View File
@@ -24,9 +24,11 @@
};
};
outputs =
{ ... }@inputs: let
{ ... }@inputs:
let
userName = "autumn";
in {
in
{
nixosConfigurations = {
"january" = inputs.nixpkgs.lib.nixosSystem {
specialArgs = {
@@ -43,9 +45,9 @@
hostName = "february";
inherit userName;
inherit inputs;
modules = [ ./host/pc/february/configuration.nix ];
};
modules = [ ./host/pc/february/configuration.nix ];
};
"march" = inputs.nixpkgs.lib.nixosSystem {