devos/hosts/default.nix

89 lines
1.9 KiB
Nix
Raw Normal View History

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