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