mirror of
https://github.com/Moe1369/nix-fleet.git
synced 2026-04-25 08:09:08 +02:00
15 lines
273 B
Nix
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} ];
|
|
};
|
|
}
|