2020-01-05 22:39:59 +00:00
|
|
|
args@{ home, nixpkgs, self, ... }:
|
2019-12-05 05:36:36 +00:00
|
|
|
let
|
2020-01-11 06:49:18 +00:00
|
|
|
inherit (nixpkgs) lib;
|
|
|
|
|
|
|
|
utils = import ../lib/utils.nix { inherit lib; };
|
2020-01-05 22:39:59 +00:00
|
|
|
|
|
|
|
inherit (utils) recImport;
|
2019-12-31 01:00:09 +00:00
|
|
|
|
2020-01-04 05:06:31 +00:00
|
|
|
inherit (builtins) attrValues removeAttrs;
|
2019-12-05 05:36:36 +00:00
|
|
|
|
2020-01-11 06:49:18 +00:00
|
|
|
config = hostName:
|
|
|
|
lib.nixosSystem rec {
|
2019-12-14 04:30:43 +00:00
|
|
|
system = "x86_64-linux";
|
2019-12-05 05:36:36 +00:00
|
|
|
|
2020-01-11 06:49:18 +00:00
|
|
|
specialArgs.usr = { inherit utils; };
|
2020-01-06 05:41:19 +00:00
|
|
|
|
2019-12-14 04:30:43 +00:00
|
|
|
modules = let
|
2020-01-11 06:49:18 +00:00
|
|
|
inherit (home.nixosModules) home-manager;
|
|
|
|
|
2019-12-14 04:30:43 +00:00
|
|
|
core = ../profiles/core.nix;
|
2019-12-05 05:36:36 +00:00
|
|
|
|
2019-12-14 04:30:43 +00:00
|
|
|
global = {
|
2020-01-11 06:49:18 +00:00
|
|
|
networking.hostName = hostName;
|
2019-12-16 04:36:05 +00:00
|
|
|
nix.nixPath = [
|
|
|
|
"nixpkgs=${nixpkgs}"
|
|
|
|
"nixos-config=/etc/nixos/configuration.nix"
|
2020-01-06 07:01:00 +00:00
|
|
|
"nixpkgs-overlays=/etc/nixos/overlays"
|
2019-12-16 04:36:05 +00:00
|
|
|
];
|
2020-01-11 06:49:18 +00:00
|
|
|
|
2020-01-04 01:27:52 +00:00
|
|
|
system.configurationRevision = self.rev;
|
2019-12-31 00:45:30 +00:00
|
|
|
|
2020-01-11 04:55:09 +00:00
|
|
|
nixpkgs.overlays = self.overlays;
|
2019-12-05 05:36:36 +00:00
|
|
|
};
|
|
|
|
|
2020-01-11 06:49:18 +00:00
|
|
|
local = import "${toString ./.}/${hostName}.nix";
|
2020-01-02 02:12:59 +00:00
|
|
|
|
2020-01-11 06:49:18 +00:00
|
|
|
# Everything in `./modules/list.nix`.
|
|
|
|
flakeModules =
|
|
|
|
attrValues (removeAttrs self.nixosModules [ "profiles" ]);
|
2020-01-04 03:01:22 +00:00
|
|
|
|
2020-01-11 06:49:18 +00:00
|
|
|
in flakeModules ++ [ core global local home-manager ];
|
2019-12-05 05:36:36 +00:00
|
|
|
|
2019-12-14 04:30:43 +00:00
|
|
|
};
|
2019-12-17 23:03:44 +00:00
|
|
|
|
2020-01-04 05:06:31 +00:00
|
|
|
hosts = recImport {
|
|
|
|
dir = ./.;
|
|
|
|
_import = config;
|
|
|
|
};
|
|
|
|
in hosts
|