os/hosts/default.nix

92 lines
2.1 KiB
Nix
Raw Normal View History

{ home
, lib
, nixos
, master
, nixos-hardware
, osPkgs
, self
, system
, unstablePkgs
, utils
, externModules
, ...
}:
let
inherit (utils) recImport;
2020-01-04 05:06:31 +00:00
inherit (builtins) attrValues removeAttrs;
unstableModules = [ ];
addToDisabledModules = [ ];
config = hostName:
lib.nixosSystem {
inherit system;
2020-12-31 20:42:49 +00:00
specialArgs =
{
unstableModulesPath = "${master}/nixos/modules";
hardwareModulesPath = "${nixos-hardware}";
2020-12-31 20:42:49 +00:00
};
2020-07-31 04:17:28 +00:00
modules =
let
core = self.nixosModules.profiles.core;
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;
nix.nixPath = let path = toString ../.; in
[
2020-12-16 21:47:51 +00:00
"nixos-unstable=${master}"
"nixpkgs=${nixos}"
"nixos-config=${path}/configuration.nix"
"nixpkgs-overlays=${path}/overlays"
2020-12-16 21:47:51 +00:00
"home-manager=${home}"
];
2020-07-31 04:17:28 +00:00
nixpkgs.pkgs = osPkgs;
2020-07-31 04:17:28 +00:00
nix.registry = {
2020-12-16 21:47:51 +00:00
master.flake = master;
2020-07-31 04:17:28 +00:00
nixflk.flake = self;
2020-12-16 21:47:51 +00:00
nixpkgs.flake = nixos;
home-manager.flake = home;
2020-07-31 04:17:28 +00:00
};
2020-08-04 06:11:08 +00:00
system.configurationRevision = lib.mkIf (self ? rev) self.rev;
};
2020-07-31 04:17:28 +00:00
local = import "${toString ./.}/${hostName}.nix";
2020-07-31 04:17:28 +00:00
# Everything in `./modules/list.nix`.
flakeModules =
attrValues (removeAttrs self.nixosModules [ "profiles" ]);
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