2019-12-03 08:18:30 +03:00
|
|
|
{
|
2019-12-05 11:36:15 +03:00
|
|
|
description = "A highly structured configuration database.";
|
2019-12-05 08:36:36 +03:00
|
|
|
|
2021-07-17 00:09:26 +03:00
|
|
|
nixConfig.extra-experimental-features = "nix-command flakes ca-references";
|
|
|
|
nixConfig.extra-substituters = "https://nrdxp.cachix.org https://nix-community.cachix.org";
|
|
|
|
nixConfig.extra-trusted-public-keys = "nrdxp.cachix.org-1:Fc5PSqY2Jm1TrWfm88l6cvGWwz3s93c6IOifQWnhNW4= nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=";
|
|
|
|
|
2020-08-02 07:08:41 +03:00
|
|
|
inputs =
|
|
|
|
{
|
2021-03-17 00:43:55 +03:00
|
|
|
nixos.url = "nixpkgs/nixos-unstable";
|
2021-04-22 06:44:15 +03:00
|
|
|
latest.url = "nixpkgs";
|
2021-04-02 05:10:24 +03:00
|
|
|
|
2021-07-24 20:01:36 +03:00
|
|
|
digga.url = "github:divnix/digga/main";
|
2021-07-16 01:15:18 +03:00
|
|
|
digga.inputs.nixpkgs.follows = "nixos";
|
|
|
|
digga.inputs.nixlib.follows = "nixos";
|
2021-07-13 01:32:13 +03:00
|
|
|
digga.inputs.home-manager.follows = "home";
|
2021-07-16 01:15:18 +03:00
|
|
|
|
|
|
|
bud.url = "github:divnix/bud";
|
|
|
|
bud.inputs.nixpkgs.follows = "nixos";
|
|
|
|
bud.inputs.devshell.follows = "digga/devshell";
|
2021-07-08 01:11:59 +03:00
|
|
|
|
2021-07-24 18:38:59 +03:00
|
|
|
home.url = "github:nix-community/home-manager/master";
|
2021-02-08 00:24:41 +03:00
|
|
|
home.inputs.nixpkgs.follows = "nixos";
|
2021-07-16 01:15:18 +03:00
|
|
|
|
2021-03-02 06:30:47 +03:00
|
|
|
darwin.url = "github:LnL7/nix-darwin";
|
2021-04-22 06:44:15 +03:00
|
|
|
darwin.inputs.nixpkgs.follows = "latest";
|
2021-07-16 01:15:18 +03:00
|
|
|
|
|
|
|
deploy.follows = "digga/deploy";
|
|
|
|
|
2021-05-13 20:35:23 +03:00
|
|
|
agenix.url = "github:ryantm/agenix";
|
|
|
|
agenix.inputs.nixpkgs.follows = "latest";
|
2021-04-02 05:10:24 +03:00
|
|
|
|
2021-06-14 07:48:43 +03:00
|
|
|
nvfetcher.url = "github:berberman/nvfetcher";
|
|
|
|
nvfetcher.inputs.nixpkgs.follows = "latest";
|
2021-07-16 01:15:18 +03:00
|
|
|
nvfetcher.inputs.flake-compat.follows = "digga/deploy/flake-compat";
|
2021-07-21 02:33:45 +03:00
|
|
|
nvfetcher.inputs.flake-utils.follows = "digga/flake-utils-plus/flake-utils";
|
2021-07-16 01:15:18 +03:00
|
|
|
|
|
|
|
naersk.url = "github:nmattia/naersk";
|
|
|
|
naersk.inputs.nixpkgs.follows = "latest";
|
|
|
|
|
2021-03-02 06:30:47 +03:00
|
|
|
nixos-hardware.url = "github:nixos/nixos-hardware";
|
2021-04-02 05:10:24 +03:00
|
|
|
|
2021-05-03 07:48:31 +03:00
|
|
|
nixosPersistence.url = "github:nix-community/impermanence";
|
2021-05-14 02:58:36 +03:00
|
|
|
nixpkgsWayland = {
|
|
|
|
url = "github:colemickens/nixpkgs-wayland";
|
|
|
|
inputs.nixpkgs.follows = "nixos";
|
|
|
|
};
|
2021-07-16 01:15:18 +03: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 02:33:45 +03:00
|
|
|
flake-utils-plus.follows = "digga/flake-utils-plus";
|
2021-07-16 01:15:18 +03:00
|
|
|
flake-utils.follows = "digga/flake-utils";
|
|
|
|
# end ANTI CORRUPTION LAYER
|
2020-08-02 07:08:41 +03:00
|
|
|
};
|
2019-12-14 07:39:25 +03:00
|
|
|
|
2021-05-13 20:35:23 +03:00
|
|
|
outputs =
|
|
|
|
{ self
|
|
|
|
, digga
|
2021-07-08 03:31:12 +03:00
|
|
|
, bud
|
2021-05-13 20:35:23 +03:00
|
|
|
, nixos
|
|
|
|
, home
|
|
|
|
, nixos-hardware
|
|
|
|
, nur
|
|
|
|
, agenix
|
2021-07-14 22:59:23 +03:00
|
|
|
, nixosPersistence
|
|
|
|
, nixpkgsWayland
|
2021-06-14 07:48:43 +03:00
|
|
|
, nvfetcher
|
2021-07-08 03:31:12 +03:00
|
|
|
, deploy
|
2021-05-13 20:35:23 +03:00
|
|
|
, ...
|
|
|
|
} @ inputs:
|
2021-07-17 00:01:25 +03:00
|
|
|
digga.lib.mkFlake
|
|
|
|
{
|
|
|
|
inherit self inputs;
|
2021-04-22 06:44:15 +03:00
|
|
|
|
2021-07-17 00:01:25 +03:00
|
|
|
channelsConfig = { allowUnfree = true; };
|
2021-06-16 18:19:07 +03:00
|
|
|
|
2021-07-17 00:01:25 +03:00
|
|
|
channels = {
|
|
|
|
nixos = {
|
2021-07-21 02:33:45 +03:00
|
|
|
imports = [ (digga.lib.importOverlays ./overlays) ];
|
2021-07-17 00:01:25 +03:00
|
|
|
overlays = [
|
|
|
|
digga.overlays.patchedNix
|
|
|
|
nur.overlay
|
2021-07-24 17:11:17 +03:00
|
|
|
#agenix.overlay
|
|
|
|
#nvfetcher.overlay
|
|
|
|
#deploy.overlay
|
2021-07-24 18:38:59 +03:00
|
|
|
nixpkgsWayland.overlay
|
2021-07-17 00:01:25 +03:00
|
|
|
./pkgs/default.nix
|
|
|
|
];
|
|
|
|
};
|
|
|
|
latest = { };
|
2021-04-22 06:44:15 +03:00
|
|
|
};
|
|
|
|
|
2021-07-17 00:01:25 +03:00
|
|
|
lib = import ./lib { lib = digga.lib // nixos.lib; };
|
2021-05-14 03:03:51 +03:00
|
|
|
|
2021-07-17 00:01:25 +03:00
|
|
|
sharedOverlays = [
|
2021-07-24 18:38:59 +03:00
|
|
|
(_: prev: {
|
2021-07-17 00:01:25 +03:00
|
|
|
__dontExport = true;
|
2021-07-24 18:38:59 +03:00
|
|
|
lib = prev.lib.extend (_: _: {
|
2021-07-17 00:01:25 +03:00
|
|
|
our = self.lib;
|
|
|
|
});
|
|
|
|
})
|
|
|
|
];
|
2021-04-22 06:44:15 +03:00
|
|
|
|
|
|
|
nixos = {
|
2021-07-17 00:01:25 +03:00
|
|
|
hostDefaults = {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
channelName = "nixos";
|
2021-07-21 02:33:45 +03:00
|
|
|
imports = [ (digga.lib.importModules ./modules) ];
|
2021-07-17 00:01:25 +03:00
|
|
|
externalModules = [
|
|
|
|
{ lib.our = self.lib; }
|
2021-07-21 04:59:50 +03:00
|
|
|
digga.nixosModules.bootstrapIso
|
2021-07-17 00:01:25 +03:00
|
|
|
digga.nixosModules.nixConfig
|
|
|
|
home.nixosModules.home-manager
|
2021-07-24 17:11:17 +03:00
|
|
|
#agenix.nixosModules.age
|
2021-07-21 07:36:41 +03:00
|
|
|
bud.nixosModules.bud
|
2021-07-24 16:50:17 +03:00
|
|
|
nixosPersistence.nixosModules.impermanence
|
2021-07-17 00:01:25 +03:00
|
|
|
];
|
|
|
|
};
|
2021-05-14 03:03:51 +03:00
|
|
|
|
2021-07-21 02:33:45 +03:00
|
|
|
imports = [ (digga.lib.importHosts ./hosts) ];
|
2021-07-17 00:01:25 +03:00
|
|
|
hosts = {
|
|
|
|
/* set host specific properties here */
|
|
|
|
NixOS = { };
|
2021-05-27 20:41:55 +03:00
|
|
|
};
|
2021-07-17 00:01:25 +03:00
|
|
|
importables = rec {
|
2021-07-24 18:38:59 +03:00
|
|
|
profiles = (digga.lib.rakeLeaves ./profiles) // {
|
2021-07-21 02:33:45 +03:00
|
|
|
users = digga.lib.rakeLeaves ./users;
|
2021-07-17 00:01:25 +03:00
|
|
|
};
|
2021-07-24 16:50:17 +03:00
|
|
|
suites = with profiles; {
|
|
|
|
base = [ cachix core users.root ];
|
|
|
|
work = [ users.patriot develop ];
|
2021-07-17 00:01:25 +03:00
|
|
|
};
|
2021-06-16 18:19:07 +03:00
|
|
|
};
|
2021-04-22 06:44:15 +03:00
|
|
|
};
|
|
|
|
|
2021-07-17 00:01:25 +03:00
|
|
|
home = {
|
2021-07-21 02:33:45 +03:00
|
|
|
imports = [ (digga.lib.importModules ./users/modules) ];
|
2021-07-17 00:01:25 +03:00
|
|
|
externalModules = [ ];
|
|
|
|
importables = rec {
|
2021-07-21 02:33:45 +03:00
|
|
|
profiles = digga.lib.rakeLeaves ./users/profiles;
|
2021-07-17 00:01:25 +03:00
|
|
|
suites = with profiles; rec {
|
2021-07-24 16:50:17 +03:00
|
|
|
base = [ direnv git starship ];
|
2021-07-17 00:01:25 +03:00
|
|
|
};
|
2021-06-16 18:19:07 +03:00
|
|
|
};
|
2021-04-22 06:44:15 +03:00
|
|
|
};
|
|
|
|
|
2021-07-21 07:36:41 +03:00
|
|
|
devshell = ./shell;
|
2021-05-29 22:53:33 +03:00
|
|
|
|
2021-07-17 00:01:25 +03:00
|
|
|
homeConfigurations = digga.lib.mkHomeConfigurations self.nixosConfigurations;
|
2021-05-02 20:35:29 +03:00
|
|
|
|
2021-07-17 00:01:25 +03:00
|
|
|
deploy.nodes = digga.lib.mkDeployNodes self.nixosConfigurations { };
|
2021-05-02 20:35:29 +03:00
|
|
|
|
2021-07-17 00:01:25 +03:00
|
|
|
defaultTemplate = self.templates.bud;
|
|
|
|
templates.bud.path = ./.;
|
|
|
|
templates.bud.description = "bud template";
|
2021-07-24 18:38:59 +03:00
|
|
|
budModules = { devos = import ./pkgs/bud; };
|
|
|
|
};
|
2019-12-03 08:18:30 +03:00
|
|
|
}
|