This commit is contained in:
2026-03-03 21:01:15 +01:00
parent e99c6c7b26
commit af801472bc
2 changed files with 5 additions and 12 deletions

View File

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