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-06-09 01:14:32 +00:00
|
|
|
digga.url = "github:divnix/digga/master";
|
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-05-13 17:35:23 +00:00
|
|
|
agenix.url = "github:ryantm/agenix";
|
|
|
|
agenix.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";
|
2021-05-30 19:10:28 +00:00
|
|
|
|
|
|
|
# PubSolarOS additions
|
|
|
|
|
|
|
|
nix-dram.url = "github:dramforever/nix-dram";
|
|
|
|
|
|
|
|
# This is a fix so that the neovim-flake dependency of neovim-nightly doesn't shit itself
|
|
|
|
nixpkgs.url = "nixpkgs";
|
|
|
|
neovim-nightly.url = "github:nix-community/neovim-nightly-overlay";
|
2020-08-02 04:08:41 +00:00
|
|
|
};
|
2019-12-14 04:39:25 +00:00
|
|
|
|
2021-05-13 17:35:23 +00:00
|
|
|
outputs =
|
|
|
|
{ self
|
|
|
|
, pkgs
|
|
|
|
, digga
|
|
|
|
, nixos
|
|
|
|
, ci-agent
|
|
|
|
, home
|
|
|
|
, nixos-hardware
|
|
|
|
, nur
|
|
|
|
, agenix
|
2021-06-09 16:37:21 +00:00
|
|
|
, nix-dram
|
|
|
|
, neovim-nightly
|
2021-05-13 17:35:23 +00:00
|
|
|
, ...
|
|
|
|
} @ inputs:
|
2021-05-14 17:17:53 +00:00
|
|
|
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-05-13 17:35:23 +00:00
|
|
|
agenix.overlay
|
2021-05-30 19:10:28 +00:00
|
|
|
nix-dram.overlay
|
|
|
|
neovim-nightly.overlay
|
2021-05-14 23:49:12 +00:00
|
|
|
];
|
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-05-13 17:35:23 +00:00
|
|
|
agenix.nixosModules.age
|
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-05-27 17:41:55 +00:00
|
|
|
importables = rec {
|
|
|
|
profiles = digga.lib.importers.rakeLeaves ./profiles // {
|
|
|
|
users = digga.lib.importers.rakeLeaves ./users;
|
|
|
|
};
|
|
|
|
suites = with profiles; rec {
|
|
|
|
base = [ core users.nixos users.root ];
|
2021-06-09 16:37:21 +00:00
|
|
|
pubsolaros = [ core base-user users.root ];
|
2021-06-14 19:44:38 +00:00
|
|
|
anonymous = pubsolaros ++ [ users.nixos ];
|
|
|
|
teutat3s = pubsolaros ++ [ users.teutat3s ];
|
2021-06-21 08:01:12 +00:00
|
|
|
con = teutat3s ++ [ graphical ];
|
2021-06-14 19:44:38 +00:00
|
|
|
dumpyourvms = teutat3s ++ [ graphical ];
|
2021-05-27 17:41:55 +00:00
|
|
|
};
|
2021-04-22 03:44:15 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
home = {
|
|
|
|
modules = ./users/modules/module-list.nix;
|
|
|
|
externalModules = [ ];
|
2021-05-27 17:41:55 +00:00
|
|
|
importables = rec {
|
|
|
|
profiles = digga.lib.importers.rakeLeaves ./users/profiles;
|
|
|
|
suites = with profiles; rec {
|
|
|
|
base = [ direnv git ];
|
|
|
|
};
|
2021-04-22 03:44:15 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-05-29 19:53:33 +00:00
|
|
|
devshell.externalModules = { pkgs, ... }: {
|
|
|
|
packages = [ pkgs.agenix ];
|
|
|
|
};
|
|
|
|
|
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-05-17 02:35:52 +00:00
|
|
|
defaultTemplate = self.templates.flk;
|
2021-04-22 03:44:15 +00:00
|
|
|
templates.flk.path = ./.;
|
|
|
|
templates.flk.description = "flk template";
|
|
|
|
|
|
|
|
}
|
|
|
|
;
|
2019-12-03 05:18:30 +00:00
|
|
|
}
|