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, ... }:
let
system = "x86_64-linux";
user = "mo";
# user = "mo";
host = "computer-mo";
mkHost = inputs.self.lib.mkHost;
in
{
flake.nixosConfigurations.${host} = mkHost {
inherit system user host;
inherit system host;
extraModules = [ inputs.self.nixosModules.${host} ];
};
}