2020-07-30 23:29:58 +02:00
|
|
|
{ home, nixpkgs, unstable, unstablePkgs, self, pkgs, system, utils, ... }:
|
2019-12-05 06:36:36 +01:00
|
|
|
let
|
2020-01-11 07:49:18 +01:00
|
|
|
inherit (nixpkgs) lib;
|
2020-01-05 23:39:59 +01:00
|
|
|
inherit (utils) recImport;
|
2020-01-04 06:06:31 +01:00
|
|
|
inherit (builtins) attrValues removeAttrs;
|
2019-12-05 06:36:36 +01:00
|
|
|
|
2020-01-11 07:49:18 +01:00
|
|
|
config = hostName:
|
2020-02-02 05:10:09 +01:00
|
|
|
lib.nixosSystem {
|
2020-01-29 16:50:07 +01:00
|
|
|
inherit system;
|
2019-12-05 06:36:36 +01:00
|
|
|
|
2019-12-14 05:30:43 +01:00
|
|
|
modules = let
|
2020-01-11 07:49:18 +01:00
|
|
|
inherit (home.nixosModules) home-manager;
|
|
|
|
|
2020-07-16 23:27:39 +02:00
|
|
|
core = self.nixosModules.profiles.core;
|
2019-12-05 06:36:36 +01:00
|
|
|
|
2019-12-14 05:30:43 +01:00
|
|
|
global = {
|
2020-01-11 07:49:18 +01:00
|
|
|
networking.hostName = hostName;
|
2019-12-16 05:36:05 +01:00
|
|
|
nix.nixPath = [
|
|
|
|
"nixpkgs=${nixpkgs}"
|
|
|
|
"nixos-config=/etc/nixos/configuration.nix"
|
2020-01-06 08:01:00 +01:00
|
|
|
"nixpkgs-overlays=/etc/nixos/overlays"
|
2019-12-16 05:36:05 +01:00
|
|
|
];
|
2020-01-11 07:49:18 +01:00
|
|
|
|
2020-01-29 16:50:07 +01:00
|
|
|
nixpkgs = { inherit pkgs; };
|
2020-07-27 06:18:59 +02:00
|
|
|
|
|
|
|
nix.registry = {
|
|
|
|
nixpkgs.flake = nixpkgs;
|
|
|
|
nixflk.flake = self;
|
2020-07-30 23:29:58 +02:00
|
|
|
master.flake = unstable;
|
2020-07-27 06:18:59 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
unstables = {
|
|
|
|
systemd.package = unstablePkgs.systemd;
|
|
|
|
nixpkgs.overlays = [
|
|
|
|
(final: prev:
|
|
|
|
with unstablePkgs; {
|
2020-07-30 07:39:24 +02:00
|
|
|
inherit starship element-desktop discord signal-desktop mpv
|
|
|
|
dhall;
|
2020-07-27 06:18:59 +02:00
|
|
|
})
|
|
|
|
];
|
2019-12-05 06:36:36 +01:00
|
|
|
};
|
|
|
|
|
2020-01-11 07:49:18 +01:00
|
|
|
local = import "${toString ./.}/${hostName}.nix";
|
2020-01-02 03:12:59 +01:00
|
|
|
|
2020-01-11 07:49:18 +01:00
|
|
|
# Everything in `./modules/list.nix`.
|
|
|
|
flakeModules =
|
|
|
|
attrValues (removeAttrs self.nixosModules [ "profiles" ]);
|
2020-01-04 04:01:22 +01:00
|
|
|
|
2020-07-27 06:18:59 +02:00
|
|
|
in flakeModules ++ [ core global local home-manager unstables ];
|
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
|