2020-06-13 04:18:27 +03:00
|
|
|
inputs@{ home, nixpkgs, unstablePkgs, self, pkgs, system, ... }:
|
2019-12-05 08:36:36 +03:00
|
|
|
let
|
2020-01-11 09:49:18 +03:00
|
|
|
inherit (nixpkgs) lib;
|
|
|
|
|
|
|
|
utils = import ../lib/utils.nix { inherit lib; };
|
2020-01-06 01:39:59 +03:00
|
|
|
|
|
|
|
inherit (utils) recImport;
|
2019-12-31 04:00:09 +03:00
|
|
|
|
2020-01-04 08:06:31 +03:00
|
|
|
inherit (builtins) attrValues removeAttrs;
|
2019-12-05 08:36:36 +03:00
|
|
|
|
2020-01-11 09:49:18 +03:00
|
|
|
config = hostName:
|
2020-02-02 07:10:09 +03:00
|
|
|
lib.nixosSystem {
|
2020-01-29 18:50:07 +03:00
|
|
|
inherit system;
|
2019-12-05 08:36:36 +03:00
|
|
|
|
2020-06-13 04:18:27 +03:00
|
|
|
specialArgs = {
|
|
|
|
inherit unstablePkgs;
|
2020-07-24 02:03:42 +03:00
|
|
|
|
|
|
|
flakes = {
|
|
|
|
nixpkgs = nixpkgs;
|
|
|
|
master = inputs.unstable;
|
|
|
|
nixflk = self;
|
|
|
|
};
|
|
|
|
|
2020-06-13 04:18:27 +03:00
|
|
|
usr = { inherit utils; };
|
|
|
|
};
|
2020-01-06 08:41:19 +03:00
|
|
|
|
2019-12-14 07:30:43 +03:00
|
|
|
modules = let
|
2020-01-11 09:49:18 +03:00
|
|
|
inherit (home.nixosModules) home-manager;
|
|
|
|
|
2020-07-17 00:27:39 +03:00
|
|
|
core = self.nixosModules.profiles.core;
|
2019-12-05 08:36:36 +03:00
|
|
|
|
2019-12-14 07:30:43 +03:00
|
|
|
global = {
|
2020-01-11 09:49:18 +03:00
|
|
|
networking.hostName = hostName;
|
2019-12-16 07:36:05 +03:00
|
|
|
nix.nixPath = [
|
|
|
|
"nixpkgs=${nixpkgs}"
|
|
|
|
"nixos-config=/etc/nixos/configuration.nix"
|
2020-01-06 10:01:00 +03:00
|
|
|
"nixpkgs-overlays=/etc/nixos/overlays"
|
2019-12-16 07:36:05 +03:00
|
|
|
];
|
2020-01-11 09:49:18 +03:00
|
|
|
|
2020-01-29 18:50:07 +03:00
|
|
|
nixpkgs = { inherit pkgs; };
|
2019-12-05 08:36:36 +03:00
|
|
|
};
|
|
|
|
|
2020-01-11 09:49:18 +03:00
|
|
|
local = import "${toString ./.}/${hostName}.nix";
|
2020-01-02 05:12:59 +03:00
|
|
|
|
2020-01-11 09:49:18 +03:00
|
|
|
# Everything in `./modules/list.nix`.
|
|
|
|
flakeModules =
|
|
|
|
attrValues (removeAttrs self.nixosModules [ "profiles" ]);
|
2020-01-04 06:01:22 +03:00
|
|
|
|
2020-01-11 09:49:18 +03:00
|
|
|
in flakeModules ++ [ core global local home-manager ];
|
2019-12-05 08:36:36 +03:00
|
|
|
|
2019-12-14 07:30:43 +03:00
|
|
|
};
|
2019-12-18 02:03:44 +03:00
|
|
|
|
2020-01-04 08:06:31 +03:00
|
|
|
hosts = recImport {
|
|
|
|
dir = ./.;
|
|
|
|
_import = config;
|
|
|
|
};
|
|
|
|
in hosts
|