os/hosts/default.nix

92 lines
2 KiB
Nix
Raw Normal View History

2021-01-19 08:00:41 +00:00
{ lib
, nixos
, master
, nixos-hardware
, pkgs
, self
, system
, externModules
, ...
}:
let
inherit (lib.flk) recImport nixosSystemExtended defaultImports;
2020-01-04 05:06:31 +00:00
inherit (builtins) attrValues removeAttrs;
profiles = defaultImports (toString ../profiles);
suites = import ../profiles/suites.nix { inherit lib profiles; };
unstableModules = [ ];
addToDisabledModules = [ ];
config = hostName:
2021-01-28 02:11:38 +00:00
nixosSystemExtended {
inherit system;
2020-12-31 20:42:49 +00:00
specialArgs =
{
inherit suites;
2020-12-31 20:42:49 +00:00
unstableModulesPath = "${master}/nixos/modules";
hardware = nixos-hardware.nixosModules;
2020-12-31 20:42:49 +00:00
};
2020-07-31 04:17:28 +00:00
modules =
let
core = profiles.core.default;
2020-07-31 04:17:28 +00:00
modOverrides = { config, unstableModulesPath, ... }: {
disabledModules = unstableModules ++ addToDisabledModules;
imports = map
(path: "${unstableModulesPath}/${path}")
unstableModules;
};
2020-07-31 04:17:28 +00:00
global = {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
hardware.enableRedistributableFirmware = lib.mkDefault true;
2020-07-31 04:17:28 +00:00
networking.hostName = hostName;
2021-02-01 16:56:33 +00:00
nix.nixPath = [
"nixos-unstable=${master}"
"nixos=${nixos}"
"nixpkgs=${nixos}"
];
2020-07-31 04:17:28 +00:00
nixpkgs = { inherit pkgs; };
2020-07-31 04:17:28 +00:00
nix.registry = {
2020-12-16 21:47:51 +00:00
master.flake = master;
nixpkgs.flake = nixos;
2020-07-31 04:17:28 +00:00
};
2020-08-04 06:11:08 +00:00
system.configurationRevision = lib.mkIf (self ? rev) self.rev;
};
2021-02-03 23:41:21 +00:00
local = {
require = [
(import "${toString ./.}/${hostName}.nix")
];
};
2020-07-31 04:17:28 +00:00
# Everything in `./modules/list.nix`.
flakeModules =
attrValues self.nixosModules;
2020-07-31 04:17:28 +00:00
in
2020-12-31 21:11:32 +00:00
flakeModules ++ [
core
global
local
modOverrides
] ++ externModules;
};
2020-01-04 05:06:31 +00:00
hosts = recImport {
dir = ./.;
_import = config;
};
2020-07-31 04:17:28 +00:00
in
hosts