180 lines
5.5 KiB
Nix
180 lines
5.5 KiB
Nix
{
|
|
description = "A highly structured configuration database.";
|
|
|
|
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=";
|
|
|
|
inputs =
|
|
{
|
|
nixos.url = "nixpkgs/release-21.05";
|
|
latest.url = "nixpkgs";
|
|
|
|
digga.url = "github:divnix/digga/develop";
|
|
digga.inputs.nixpkgs.follows = "nixos";
|
|
digga.inputs.nixlib.follows = "nixos";
|
|
digga.inputs.home-manager.follows = "home";
|
|
|
|
bud.url = "github:divnix/bud";
|
|
bud.inputs.nixpkgs.follows = "nixos";
|
|
bud.inputs.devshell.follows = "digga/devshell";
|
|
|
|
home.url = "github:nix-community/home-manager/release-21.05";
|
|
home.inputs.nixpkgs.follows = "nixos";
|
|
|
|
darwin.url = "github:LnL7/nix-darwin";
|
|
darwin.inputs.nixpkgs.follows = "latest";
|
|
|
|
deploy.follows = "digga/deploy";
|
|
|
|
agenix.url = "github:ryantm/agenix";
|
|
agenix.inputs.nixpkgs.follows = "latest";
|
|
|
|
nvfetcher.url = "github:berberman/nvfetcher";
|
|
nvfetcher.inputs.nixpkgs.follows = "latest";
|
|
nvfetcher.inputs.flake-compat.follows = "digga/deploy/flake-compat";
|
|
nvfetcher.inputs.flake-utils.follows = "digga/utils/flake-utils";
|
|
|
|
ci-agent.url = "github:hercules-ci/hercules-ci-agent";
|
|
ci-agent.inputs.nix-darwin.follows = "darwin";
|
|
ci-agent.inputs.nixos-20_09.follows = "nixos";
|
|
ci-agent.inputs.nixos-unstable.follows = "latest";
|
|
ci-agent.inputs.flake-compat.follows = "digga/deploy/flake-compat";
|
|
|
|
naersk.url = "github:nmattia/naersk";
|
|
naersk.inputs.nixpkgs.follows = "latest";
|
|
|
|
nixos-hardware.url = "github:nixos/nixos-hardware";
|
|
|
|
# start ANTI CORRUPTION LAYER
|
|
# remove after https://github.com/NixOS/nix/pull/4641
|
|
nixpkgs.follows = "nixos";
|
|
nixlib.follows = "digga/nixlib";
|
|
blank.follows = "digga/blank";
|
|
utils.follows = "digga/utils";
|
|
flake-utils.follows = "digga/flake-utils";
|
|
# end ANTI CORRUPTION LAYER
|
|
|
|
# PubSolarOS additions
|
|
nix-dram.url = "github:dramforever/nix-dram";
|
|
};
|
|
|
|
outputs =
|
|
{ self
|
|
, digga
|
|
, bud
|
|
, nixos
|
|
, ci-agent
|
|
, home
|
|
, nixos-hardware
|
|
, nur
|
|
, agenix
|
|
, nvfetcher
|
|
, deploy
|
|
, nix-dram
|
|
, ...
|
|
} @ inputs:
|
|
let
|
|
bud' = bud self; # rebind to access self.budModules
|
|
in
|
|
digga.lib.mkFlake
|
|
{
|
|
inherit self inputs;
|
|
|
|
channelsConfig = { allowUnfree = true; };
|
|
|
|
channels = {
|
|
nixos = {
|
|
imports = [ (digga.lib.importers.overlays ./overlays) ];
|
|
overlays = [
|
|
digga.overlays.patchedNix
|
|
nur.overlay
|
|
agenix.overlay
|
|
nvfetcher.overlay
|
|
deploy.overlay
|
|
nix-dram.overlay
|
|
./pkgs/default.nix
|
|
];
|
|
};
|
|
latest = { };
|
|
};
|
|
|
|
lib = import ./lib { lib = digga.lib // nixos.lib; };
|
|
|
|
sharedOverlays = [
|
|
(final: prev: {
|
|
__dontExport = true;
|
|
lib = prev.lib.extend (lfinal: lprev: {
|
|
our = self.lib;
|
|
});
|
|
})
|
|
];
|
|
|
|
nixos = {
|
|
hostDefaults = {
|
|
system = "x86_64-linux";
|
|
channelName = "nixos";
|
|
imports = [ (digga.lib.importers.modules ./modules) ];
|
|
externalModules = [
|
|
{ lib.our = self.lib; }
|
|
digga.nixosModules.nixConfig
|
|
ci-agent.nixosModules.agent-profile
|
|
home.nixosModules.home-manager
|
|
agenix.nixosModules.age
|
|
(bud.nixosModules.bud bud')
|
|
];
|
|
};
|
|
|
|
imports = [ (digga.lib.importers.hosts ./hosts) ];
|
|
hosts = {
|
|
/* set host specific properties here */
|
|
NixOS = { };
|
|
};
|
|
importables = rec {
|
|
profiles = digga.lib.importers.rakeLeaves ./profiles // {
|
|
users = digga.lib.importers.rakeLeaves ./users;
|
|
};
|
|
suites = with profiles; rec {
|
|
base = [ core users.nixos users.root ];
|
|
pubsolaros = [ core base-user users.root ];
|
|
anonymous = [ pubsolaros users.nixos ];
|
|
teutat3s = pubsolaros ++ [ users.teutat3s ];
|
|
con = teutat3s ++ [ graphical ];
|
|
dumpyourvms = teutat3s ++ [ graphical ];
|
|
ryzensun = teutat3s ++ [ graphical ];
|
|
};
|
|
};
|
|
};
|
|
|
|
home = {
|
|
imports = [ (digga.lib.importers.modules ./users/modules) ];
|
|
externalModules = [ ];
|
|
importables = rec {
|
|
profiles = digga.lib.importers.rakeLeaves ./users/profiles;
|
|
suites = with profiles; rec {
|
|
base = [ direnv git ];
|
|
};
|
|
};
|
|
users = {
|
|
nixos = { suites, ... }: { imports = suites.base; };
|
|
}; # digga.lib.importers.rakeLeaves ./users/hm;
|
|
};
|
|
|
|
devshell.modules = [ (import ./shell bud') ];
|
|
|
|
homeConfigurations = digga.lib.mkHomeConfigurations self.nixosConfigurations;
|
|
|
|
deploy.nodes = digga.lib.mkDeployNodes self.nixosConfigurations { };
|
|
|
|
defaultTemplate = self.templates.bud;
|
|
templates.bud.path = ./.;
|
|
templates.bud.description = "bud template";
|
|
|
|
}
|
|
//
|
|
{
|
|
budModules = { devos = import ./pkgs/bud; };
|
|
}
|
|
;
|
|
}
|