NixOSConfig/lib/system.nix

28 lines
937 B
Nix
Raw Normal View History

{ nixpkgs }:
name :
{ dualBoot ? false } :
let
lib = nixpkgs.lib;
configPath = ./machines/${name}.nix;
2023-12-01 15:04:29 +00:00
machineConfig =
if builtins.pathExists configPath then
configPath
else
./hardware/base.nix;
in
lib.nixosSystem {
system = "x86_64-linux";
modules = [
(
2024-04-09 21:10:46 +00:00
{ config, pkgs, lib, ... }: {
2023-12-01 15:04:29 +00:00
imports = [
machineConfig
./config/custom-build-vm.nix
];
2024-04-06 21:43:37 +00:00
2024-04-09 12:30:36 +00:00
# Networking
networking.hostName = name;
})
];
}