mirror of
https://github.com/Moe1369/nix-fleet.git
synced 2026-04-24 23:59:07 +02:00
13 lines
216 B
Nix
13 lines
216 B
Nix
{ inputs, ... }:
|
|
let
|
|
mkHost = inputs.self.lib.mkHost;
|
|
in
|
|
{
|
|
flake.nixosConfigurations = {
|
|
computer-mo = mkHost {
|
|
user = "mo";
|
|
extraModules = [ inputs.self.nixosModules.computer-mo ];
|
|
};
|
|
};
|
|
}
|