2019-12-03 06:18:30 +01:00
|
|
|
{
|
2019-12-05 09:36:15 +01:00
|
|
|
description = "A highly structured configuration database.";
|
2019-12-05 06:36:36 +01:00
|
|
|
|
2021-07-16 23:09:26 +02:00
|
|
|
nixConfig.extra-experimental-features = "nix-command flakes ca-references";
|
2020-08-02 06:08:41 +02:00
|
|
|
inputs =
|
|
|
|
{
|
2021-06-19 20:26:07 +02:00
|
|
|
nixos.url = "nixpkgs/release-21.05";
|
2021-07-30 22:22:44 +02:00
|
|
|
latest.url = "nixpkgs/nixos-unstable";
|
2021-04-02 04:10:24 +02:00
|
|
|
|
2021-07-21 05:19:09 +02:00
|
|
|
digga.url = "github:divnix/digga";
|
2021-07-16 00:15:18 +02:00
|
|
|
digga.inputs.nixpkgs.follows = "nixos";
|
|
|
|
digga.inputs.nixlib.follows = "nixos";
|
2021-07-13 00:32:13 +02:00
|
|
|
digga.inputs.home-manager.follows = "home";
|
2021-07-16 00:15:18 +02:00
|
|
|
|
|
|
|
bud.url = "github:divnix/bud";
|
|
|
|
bud.inputs.nixpkgs.follows = "nixos";
|
|
|
|
bud.inputs.devshell.follows = "digga/devshell";
|
2021-07-08 00:11:59 +02:00
|
|
|
|
2021-07-09 18:46:01 +02:00
|
|
|
home.url = "github:nix-community/home-manager/release-21.05";
|
2021-02-07 22:24:41 +01:00
|
|
|
home.inputs.nixpkgs.follows = "nixos";
|
2021-07-16 00:15:18 +02:00
|
|
|
|
2021-03-02 04:30:47 +01:00
|
|
|
darwin.url = "github:LnL7/nix-darwin";
|
2021-04-22 05:44:15 +02:00
|
|
|
darwin.inputs.nixpkgs.follows = "latest";
|
2021-07-16 00:15:18 +02:00
|
|
|
|
|
|
|
deploy.follows = "digga/deploy";
|
|
|
|
|
2021-05-13 19:35:23 +02:00
|
|
|
agenix.url = "github:ryantm/agenix";
|
|
|
|
agenix.inputs.nixpkgs.follows = "latest";
|
2021-04-02 04:10:24 +02:00
|
|
|
|
2021-06-14 06:48:43 +02:00
|
|
|
nvfetcher.url = "github:berberman/nvfetcher";
|
|
|
|
nvfetcher.inputs.nixpkgs.follows = "latest";
|
2021-07-16 00:15:18 +02:00
|
|
|
nvfetcher.inputs.flake-compat.follows = "digga/deploy/flake-compat";
|
2021-07-21 01:33:45 +02:00
|
|
|
nvfetcher.inputs.flake-utils.follows = "digga/flake-utils-plus/flake-utils";
|
2021-07-16 00:15:18 +02:00
|
|
|
|
|
|
|
naersk.url = "github:nmattia/naersk";
|
|
|
|
naersk.inputs.nixpkgs.follows = "latest";
|
|
|
|
|
2021-03-02 04:30:47 +01:00
|
|
|
nixos-hardware.url = "github:nixos/nixos-hardware";
|
2021-04-02 04:10:24 +02:00
|
|
|
|
2021-06-13 22:23:13 +02:00
|
|
|
|
2021-07-16 00:15:18 +02:00
|
|
|
# start ANTI CORRUPTION LAYER
|
|
|
|
# remove after https://github.com/NixOS/nix/pull/4641
|
|
|
|
nixpkgs.follows = "nixos";
|
|
|
|
nixlib.follows = "digga/nixlib";
|
|
|
|
blank.follows = "digga/blank";
|
2021-07-21 01:33:45 +02:00
|
|
|
flake-utils-plus.follows = "digga/flake-utils-plus";
|
2021-07-16 00:15:18 +02:00
|
|
|
flake-utils.follows = "digga/flake-utils";
|
|
|
|
# end ANTI CORRUPTION LAYER
|
2021-08-05 14:12:48 +02:00
|
|
|
|
|
|
|
fenix.url = "github:nix-community/fenix";
|
2020-08-02 06:08:41 +02:00
|
|
|
};
|
2019-12-14 05:39:25 +01:00
|
|
|
|
2021-05-13 19:35:23 +02:00
|
|
|
outputs =
|
|
|
|
{ self
|
|
|
|
, digga
|
2021-07-08 02:31:12 +02:00
|
|
|
, bud
|
2021-05-13 19:35:23 +02:00
|
|
|
, nixos
|
|
|
|
, home
|
|
|
|
, nixos-hardware
|
|
|
|
, agenix
|
2021-06-13 22:23:13 +02:00
|
|
|
, fenix
|
2021-06-14 06:48:43 +02:00
|
|
|
, nvfetcher
|
2021-07-08 02:31:12 +02:00
|
|
|
, deploy
|
2021-05-13 19:35:23 +02:00
|
|
|
, ...
|
|
|
|
} @ inputs:
|
2021-07-16 23:01:25 +02:00
|
|
|
digga.lib.mkFlake
|
|
|
|
{
|
|
|
|
inherit self inputs;
|
|
|
|
|
|
|
|
channelsConfig = { allowUnfree = true; };
|
|
|
|
|
|
|
|
channels = {
|
|
|
|
nixos = {
|
2021-07-21 01:33:45 +02:00
|
|
|
imports = [ (digga.lib.importOverlays ./overlays) ];
|
2021-07-16 23:01:25 +02:00
|
|
|
overlays = [
|
|
|
|
digga.overlays.patchedNix
|
|
|
|
agenix.overlay
|
|
|
|
nvfetcher.overlay
|
|
|
|
deploy.overlay
|
|
|
|
./pkgs/default.nix
|
2021-08-05 14:12:48 +02:00
|
|
|
|
|
|
|
fenix.overlay
|
2021-07-16 23:01:25 +02:00
|
|
|
];
|
|
|
|
};
|
|
|
|
latest = { };
|
|
|
|
};
|
2020-06-02 01:14:33 +02:00
|
|
|
|
2021-07-16 23:01:25 +02:00
|
|
|
lib = import ./lib { lib = digga.lib // nixos.lib; };
|
2020-01-05 23:39:59 +01:00
|
|
|
|
2021-07-16 23:01:25 +02:00
|
|
|
sharedOverlays = [
|
|
|
|
(final: prev: {
|
|
|
|
__dontExport = true;
|
|
|
|
lib = prev.lib.extend (lfinal: lprev: {
|
|
|
|
our = self.lib;
|
|
|
|
});
|
|
|
|
})
|
|
|
|
];
|
2021-01-14 08:20:00 +01:00
|
|
|
|
2021-04-22 05:44:15 +02:00
|
|
|
nixos = {
|
2021-07-16 23:01:25 +02:00
|
|
|
hostDefaults = {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
channelName = "nixos";
|
2021-07-21 01:33:45 +02:00
|
|
|
imports = [ (digga.lib.importModules ./modules) ];
|
2021-07-16 23:01:25 +02:00
|
|
|
externalModules = [
|
|
|
|
{ lib.our = self.lib; }
|
2021-07-21 03:59:50 +02:00
|
|
|
digga.nixosModules.bootstrapIso
|
2021-07-16 23:01:25 +02:00
|
|
|
digga.nixosModules.nixConfig
|
|
|
|
home.nixosModules.home-manager
|
|
|
|
agenix.nixosModules.age
|
2021-07-21 06:36:41 +02:00
|
|
|
bud.nixosModules.bud
|
2021-07-16 23:01:25 +02:00
|
|
|
];
|
|
|
|
};
|
2021-07-21 01:33:45 +02:00
|
|
|
imports = [ (digga.lib.importHosts ./hosts) ];
|
2021-07-16 23:01:25 +02:00
|
|
|
hosts = {
|
|
|
|
/* set host specific properties here */
|
|
|
|
NixOS = { };
|
2021-05-27 19:41:55 +02:00
|
|
|
};
|
2021-07-16 23:01:25 +02:00
|
|
|
importables = rec {
|
2021-07-21 01:33:45 +02:00
|
|
|
profiles = digga.lib.rakeLeaves ./profiles // {
|
|
|
|
users = digga.lib.rakeLeaves ./users;
|
2021-07-16 23:01:25 +02:00
|
|
|
};
|
2021-08-05 14:12:48 +02:00
|
|
|
suites = (import ./suites) { inherit profiles; };
|
2021-05-27 19:41:55 +02:00
|
|
|
};
|
2021-04-22 05:44:15 +02:00
|
|
|
};
|
2021-07-16 23:01:25 +02:00
|
|
|
|
|
|
|
home = {
|
2021-07-21 01:33:45 +02:00
|
|
|
imports = [ (digga.lib.importModules ./users/modules) ];
|
2021-07-16 23:01:25 +02:00
|
|
|
externalModules = [ ];
|
|
|
|
importables = rec {
|
2021-07-21 01:33:45 +02:00
|
|
|
profiles = digga.lib.rakeLeaves ./users/profiles;
|
2021-07-16 23:01:25 +02:00
|
|
|
suites = with profiles; rec {
|
|
|
|
base = [ direnv git ];
|
|
|
|
};
|
2021-05-27 19:41:55 +02:00
|
|
|
};
|
2021-07-16 23:01:25 +02:00
|
|
|
users = {
|
|
|
|
nixos = { suites, ... }: { imports = suites.base; };
|
|
|
|
}; # digga.lib.importers.rakeLeaves ./users/hm;
|
2021-04-22 05:44:15 +02:00
|
|
|
};
|
2021-01-19 08:51:23 +01:00
|
|
|
|
2021-07-21 06:36:41 +02:00
|
|
|
devshell = ./shell;
|
2021-05-29 21:53:33 +02:00
|
|
|
|
2021-07-16 23:01:25 +02:00
|
|
|
homeConfigurations = digga.lib.mkHomeConfigurations self.nixosConfigurations;
|
2021-05-02 19:35:29 +02:00
|
|
|
|
2021-07-16 23:01:25 +02:00
|
|
|
deploy.nodes = digga.lib.mkDeployNodes self.nixosConfigurations { };
|
2021-03-15 03:14:51 +01:00
|
|
|
|
2021-07-16 23:01:25 +02:00
|
|
|
defaultTemplate = self.templates.bud;
|
|
|
|
templates.bud.path = ./.;
|
|
|
|
templates.bud.description = "bud template";
|
2020-12-29 04:33:26 +01:00
|
|
|
|
2021-07-16 23:01:25 +02:00
|
|
|
}
|
2021-07-08 02:31:12 +02:00
|
|
|
//
|
|
|
|
{
|
2021-08-01 23:38:52 +02:00
|
|
|
budModules = { devos = import ./bud; };
|
2021-04-22 05:44:15 +02:00
|
|
|
}
|
|
|
|
;
|
2019-12-03 06:18:30 +01:00
|
|
|
}
|