devos/hosts/default.nix

85 lines
1.8 KiB
Nix
Raw Normal View History

2021-01-19 09:00:41 +01:00
{ lib
, nixos
, master
, nixos-hardware
, pkgs
, self
, system
, externModules
, ...
}:
let
inherit (lib.flk) recImport;
2020-01-04 06:06:31 +01:00
inherit (builtins) attrValues removeAttrs;
unstableModules = [ ];
addToDisabledModules = [ ];
config = hostName:
lib.nixosSystem {
inherit system;
2020-12-31 21:42:49 +01:00
specialArgs =
{
unstableModulesPath = "${master}/nixos/modules";
hardware = nixos-hardware.nixosModules;
2020-12-31 21:42:49 +01:00
};
2020-07-31 06:17:28 +02:00
modules =
let
core = self.nixosModules.profiles.core;
modOverrides = { config, unstableModulesPath, ... }: {
disabledModules = unstableModules ++ addToDisabledModules;
imports = map
(path: "${unstableModulesPath}/${path}")
unstableModules;
};
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;
nix.nixPath = let path = toString ../.; in
[
2020-12-16 22:47:51 +01:00
"nixos-unstable=${master}"
2021-01-19 09:00:41 +01:00
"nixos=${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;
2020-07-31 06:17:28 +02:00
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;
};
2020-07-31 06:17:28 +02:00
local = import "${toString ./.}/${hostName}.nix";
2020-07-31 06:17:28 +02:00
# Everything in `./modules/list.nix`.
flakeModules =
attrValues (removeAttrs self.nixosModules [ "profiles" ]);
2020-07-31 06:17:28 +02:00
in
2020-12-31 22:11:32 +01:00
flakeModules ++ [
core
global
local
modOverrides
] ++ externModules;
};
2020-01-04 06:06:31 +01:00
hosts = recImport {
dir = ./.;
_import = config;
};
2020-07-31 06:17:28 +02:00
in
hosts