24 lines
761 B
Nix
24 lines
761 B
Nix
{ nixpkgs }:
|
|
name :
|
|
{ dualBoot ? false } :
|
|
let
|
|
lib = nixpkgs.lib;
|
|
configPath = ./machines/${name}.nix;
|
|
machineConfig =
|
|
if builtins.pathExists configPath then
|
|
configPath
|
|
else
|
|
./hardware/base.nix;
|
|
in
|
|
lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
(
|
|
{ config, pkgs, ... }: {
|
|
imports = [
|
|
machineConfig
|
|
];
|
|
})
|
|
];
|
|
}
|