2019-12-03 05:18:30 +00:00
|
|
|
{
|
2019-12-05 08:36:15 +00:00
|
|
|
description = "A highly structured configuration database.";
|
2019-12-05 05:36:36 +00:00
|
|
|
|
2020-08-02 04:08:41 +00:00
|
|
|
inputs =
|
|
|
|
{
|
2021-03-16 21:43:55 +00:00
|
|
|
nixos.url = "nixpkgs/nixos-unstable";
|
2021-04-22 03:44:15 +00:00
|
|
|
latest.url = "nixpkgs";
|
2021-05-14 17:17:53 +00:00
|
|
|
digga.url = "github:divnix/digga";
|
2021-04-02 02:10:24 +00:00
|
|
|
|
2021-03-02 03:30:47 +00:00
|
|
|
ci-agent = {
|
|
|
|
url = "github:hercules-ci/hercules-ci-agent";
|
2021-04-28 01:41:51 +00:00
|
|
|
inputs = { nix-darwin.follows = "darwin"; nixos-20_09.follows = "nixos"; nixos-unstable.follows = "latest"; };
|
2021-03-02 03:30:47 +00:00
|
|
|
};
|
|
|
|
darwin.url = "github:LnL7/nix-darwin";
|
2021-04-22 03:44:15 +00:00
|
|
|
darwin.inputs.nixpkgs.follows = "latest";
|
2021-03-23 14:28:25 +00:00
|
|
|
home.url = "github:nix-community/home-manager";
|
2021-02-07 21:24:41 +00:00
|
|
|
home.inputs.nixpkgs.follows = "nixos";
|
2021-02-15 05:17:24 +00:00
|
|
|
naersk.url = "github:nmattia/naersk";
|
2021-04-22 03:44:15 +00:00
|
|
|
naersk.inputs.nixpkgs.follows = "latest";
|
2021-03-02 03:30:47 +00:00
|
|
|
nixos-hardware.url = "github:nixos/nixos-hardware";
|
2021-04-02 02:10:24 +00:00
|
|
|
|
2021-03-15 03:27:58 +00:00
|
|
|
pkgs.url = "path:./pkgs";
|
|
|
|
pkgs.inputs.nixpkgs.follows = "nixos";
|
2020-08-02 04:08:41 +00:00
|
|
|
};
|
2019-12-14 04:39:25 +00:00
|
|
|
|
2021-05-14 17:17:53 +00:00
|
|
|
outputs = inputs@{ self, pkgs, digga, nixos, ci-agent, home, nixos-hardware, nur, ... }:
|
|
|
|
digga.lib.mkFlake {
|
2021-04-22 03:44:15 +00:00
|
|
|
inherit self inputs;
|
|
|
|
|
|
|
|
channelsConfig = { allowUnfree = true; };
|
|
|
|
|
|
|
|
channels = {
|
|
|
|
nixos = {
|
2021-05-14 23:49:12 +00:00
|
|
|
imports = [ (digga.lib.importers.overlays ./overlays) ];
|
|
|
|
overlays = [
|
|
|
|
./pkgs/default.nix
|
|
|
|
pkgs.overlay # for `srcs`
|
|
|
|
nur.overlay
|
|
|
|
];
|
2021-04-22 03:44:15 +00:00
|
|
|
};
|
|
|
|
latest = { };
|
|
|
|
};
|
|
|
|
|
2021-05-14 17:17:53 +00:00
|
|
|
lib = import ./lib { lib = digga.lib // nixos.lib; };
|
2021-05-05 04:49:16 +00:00
|
|
|
|
2021-05-05 04:48:49 +00:00
|
|
|
sharedOverlays = [
|
|
|
|
(final: prev: {
|
2021-05-14 18:01:44 +00:00
|
|
|
lib = prev.lib.extend (lfinal: lprev: {
|
|
|
|
our = self.lib;
|
|
|
|
});
|
2021-05-05 04:48:49 +00:00
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2021-04-22 03:44:15 +00:00
|
|
|
nixos = {
|
|
|
|
hostDefaults = {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
channelName = "nixos";
|
|
|
|
modules = ./modules/module-list.nix;
|
|
|
|
externalModules = [
|
2021-05-14 18:01:44 +00:00
|
|
|
{ _module.args.ourLib = self.lib; }
|
2021-04-22 03:44:15 +00:00
|
|
|
ci-agent.nixosModules.agent-profile
|
|
|
|
home.nixosModules.home-manager
|
2021-04-28 18:30:04 +00:00
|
|
|
./modules/customBuilds.nix
|
2021-04-22 03:44:15 +00:00
|
|
|
];
|
|
|
|
};
|
2021-05-14 00:03:51 +00:00
|
|
|
|
2021-05-14 23:49:12 +00:00
|
|
|
imports = [ (digga.lib.importers.hosts ./hosts) ];
|
2021-05-14 00:03:51 +00:00
|
|
|
hosts = {
|
|
|
|
/* set host specific properties here */
|
|
|
|
NixOS = { };
|
|
|
|
};
|
2021-04-22 03:44:15 +00:00
|
|
|
profiles = [ ./profiles ./users ];
|
|
|
|
suites = { profiles, users, ... }: with profiles; {
|
2021-05-13 02:18:11 +00:00
|
|
|
base = [ core users.nixos users.root ];
|
2021-04-22 03:44:15 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
home = {
|
|
|
|
modules = ./users/modules/module-list.nix;
|
|
|
|
externalModules = [ ];
|
|
|
|
profiles = [ ./users/profiles ];
|
|
|
|
suites = { profiles, ... }: with profiles; {
|
|
|
|
base = [ direnv git ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-05-14 17:17:53 +00:00
|
|
|
homeConfigurations = digga.lib.mkHomeConfigurations self.nixosConfigurations;
|
2021-05-02 17:35:29 +00:00
|
|
|
|
2021-05-14 17:17:53 +00:00
|
|
|
deploy.nodes = digga.lib.mkDeployNodes self.nixosConfigurations { };
|
2021-05-02 17:35:29 +00:00
|
|
|
|
2021-04-22 03:44:15 +00:00
|
|
|
#defaultTemplate = self.templates.flk;
|
|
|
|
templates.flk.path = ./.;
|
|
|
|
templates.flk.description = "flk template";
|
|
|
|
|
|
|
|
}
|
|
|
|
;
|
2019-12-03 05:18:30 +00:00
|
|
|
}
|