os/hosts/default.nix

117 lines
2.7 KiB
Nix
Raw Normal View History

{ extern
, home
, lib
, nixos
, nixos-hardware
, override
, pkgs
, self
, system
, ...
}:
let
inherit (lib.flk) recImport nixosSystemExtended defaultImports;
2020-01-04 05:06:31 +00:00
inherit (builtins) attrValues removeAttrs;
2021-02-06 20:26:17 +00:00
suites = import ../suites { inherit lib; };
config = hostName:
2021-01-28 02:11:38 +00:00
nixosSystemExtended {
inherit system;
2021-02-05 06:42:46 +00:00
specialArgs = extern.specialArgs // { inherit suites; };
2020-12-31 20:42:49 +00:00
2020-07-31 04:17:28 +00:00
modules =
let
2021-02-06 20:26:17 +00:00
core = import ../profiles/core;
2020-07-31 04:17:28 +00:00
2021-02-14 02:38:20 +00:00
modOverrides = { config, overrideModulesPath, ... }:
let
2021-02-14 02:38:20 +00:00
overrides = import ../overrides;
inherit (overrides) modules disabledModules;
in
{
disabledModules = modules ++ disabledModules;
imports = map
2021-02-14 02:38:20 +00:00
(path: "${overrideModulesPath}/${path}")
modules;
};
global =
let
inherit (lock) nodes;
lock = builtins.fromJSON (builtins.readFile ../flake.lock);
in
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
hardware.enableRedistributableFirmware = lib.mkDefault true;
2020-07-31 04:17:28 +00:00
networking.hostName = hostName;
2020-07-31 04:17:28 +00:00
nix.nixPath = [
"nixpkgs=${nixos}"
"nixos-config=${self}/compat/nixos"
"home-manager=${home}"
];
2020-08-04 06:11:08 +00:00
nixpkgs = { inherit pkgs; };
nix.registry = {
flk.flake = self;
nixos = {
exact = true;
from = nodes.nixos.original;
to = {
inherit (nixos) lastModified narHash rev;
path = override.outPath;
type = "path";
};
};
override = {
exact = true;
from = nodes.override.original;
to = {
inherit (override) lastModified narHash rev;
path = override.outPath;
type = "path";
};
};
};
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
] ++ extern.modules;
};
2020-01-04 05:06:31 +00:00
hosts = recImport {
dir = ./.;
_import = config;
};
2020-07-31 04:17:28 +00:00
in
hosts