remove user

This commit is contained in:
2026-03-03 20:45:45 +01:00
parent db454e050c
commit 7c4652f8a0

View File

@@ -1,14 +1,14 @@
{ inputs, ... }: { inputs, ... }:
let let
system = "x86_64-linux"; system = "x86_64-linux";
user = "mo"; # user = "mo";
host = "computer-mo"; host = "computer-mo";
mkHost = inputs.self.lib.mkHost; mkHost = inputs.self.lib.mkHost;
in in
{ {
flake.nixosConfigurations.${host} = mkHost { flake.nixosConfigurations.${host} = mkHost {
inherit system user host; inherit system host;
extraModules = [ inputs.self.nixosModules.${host} ]; extraModules = [ inputs.self.nixosModules.${host} ];
}; };
} }