ark/hosts/default.nix

85 lines
1.9 KiB
Nix
Raw Normal View History

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