NixOSConfig/lib/system.nix

41 lines
1.6 KiB
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
virtualisation =
let
vmConfig = {
virtualisation = {
sharedHostKeys = true;
virt-viewer = true;
};
};
in {
vmVariant = vmConfig;
vmVariantWithBootLoader = vmConfig;
};
2024-04-09 12:30:36 +00:00
# Networking
networking.hostName = name;
})
];
}