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