Files
nix-fleet/modules/hosts/computer-mo/nixos-configurations.nix
2026-03-03 10:43:21 +01:00

15 lines
273 B
Nix

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