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