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