Files
nix-fleet/modules/hosts/computer-mo/nixos-configurations.nix
2026-03-03 20:45:45 +01:00

15 lines
269 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 host;
extraModules = [ inputs.self.nixosModules.${host} ];
};
}