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
|
|
|
|
2021-11-30 00:38:56 +00:00
|
|
|
nixConfig.extra-experimental-features = "nix-command flakes";
|
2021-07-16 21:09:26 +00:00
|
|
|
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 04:08:41 +00:00
|
|
|
inputs =
|
|
|
|
{
|
2021-11-29 22:37:02 +00:00
|
|
|
nixos.url = "github:nixos/nixpkgs/release-21.11";
|
2021-08-06 01:30:40 +00:00
|
|
|
latest.url = "github:nixos/nixpkgs/nixos-unstable";
|
2022-01-31 16:52:56 +00:00
|
|
|
master.url = "github:nixos/nixpkgs/master";
|
2021-04-02 02:10:24 +00:00
|
|
|
|
2021-07-21 03:19:09 +00:00
|
|
|
digga.url = "github:divnix/digga";
|
2021-07-15 22:15:18 +00:00
|
|
|
digga.inputs.nixpkgs.follows = "nixos";
|
|
|
|
digga.inputs.nixlib.follows = "nixos";
|
2021-07-12 22:32:13 +00:00
|
|
|
digga.inputs.home-manager.follows = "home";
|
2021-11-30 00:38:56 +00:00
|
|
|
digga.inputs.deploy.follows = "deploy";
|
2021-07-15 22:15:18 +00:00
|
|
|
|
|
|
|
bud.url = "github:divnix/bud";
|
|
|
|
bud.inputs.nixpkgs.follows = "nixos";
|
|
|
|
bud.inputs.devshell.follows = "digga/devshell";
|
2021-07-07 22:11:59 +00:00
|
|
|
|
2021-11-29 22:37:02 +00:00
|
|
|
home.url = "github:nix-community/home-manager/release-21.11";
|
2021-02-07 21:24:41 +00:00
|
|
|
home.inputs.nixpkgs.follows = "nixos";
|
2021-07-15 22:15:18 +00:00
|
|
|
|
2021-03-02 03:30:47 +00:00
|
|
|
darwin.url = "github:LnL7/nix-darwin";
|
2021-11-30 00:38:56 +00:00
|
|
|
darwin.inputs.nixpkgs.follows = "nixos";
|
2021-07-15 22:15:18 +00:00
|
|
|
|
2022-02-18 00:22:48 +00:00
|
|
|
deploy.url = "github:serokell/deploy-rs";
|
2021-11-30 00:38:56 +00:00
|
|
|
deploy.inputs.nixpkgs.follows = "nixos";
|
2021-07-15 22:15:18 +00:00
|
|
|
|
2021-05-13 17:35:23 +00:00
|
|
|
agenix.url = "github:ryantm/agenix";
|
2021-11-30 00:38:56 +00:00
|
|
|
agenix.inputs.nixpkgs.follows = "nixos";
|
2021-04-02 02:10:24 +00:00
|
|
|
|
2021-06-14 04:48:43 +00:00
|
|
|
nvfetcher.url = "github:berberman/nvfetcher";
|
2021-11-30 00:38:56 +00:00
|
|
|
nvfetcher.inputs.nixpkgs.follows = "nixos";
|
2021-07-15 22:15:18 +00:00
|
|
|
|
|
|
|
naersk.url = "github:nmattia/naersk";
|
2021-11-30 00:38:56 +00:00
|
|
|
naersk.inputs.nixpkgs.follows = "nixos";
|
2021-07-15 22:15:18 +00:00
|
|
|
|
2021-03-02 03:30:47 +00:00
|
|
|
nixos-hardware.url = "github:nixos/nixos-hardware";
|
2021-04-02 02:10:24 +00:00
|
|
|
|
2021-05-30 19:10:28 +00:00
|
|
|
# PubSolarOS additions
|
2022-01-31 16:52:56 +00:00
|
|
|
nix-dram.url = "github:dramforever/nix-dram";
|
|
|
|
nix-dram.inputs.nixpkgs.follows = "latest";
|
2022-03-04 14:11:19 +00:00
|
|
|
|
|
|
|
tritonshell.url = "git+https://git.greenbaum.cloud/dev/tritonshell?ref=main&dir=template";
|
|
|
|
tritonshell.inputs.nixpkgs.follows = "latest";
|
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
|
|
|
|
, digga
|
2021-07-08 00:31:12 +00:00
|
|
|
, bud
|
2021-05-13 17:35:23 +00:00
|
|
|
, nixos
|
|
|
|
, home
|
|
|
|
, nixos-hardware
|
|
|
|
, nur
|
|
|
|
, agenix
|
2021-06-14 04:48:43 +00:00
|
|
|
, nvfetcher
|
2021-07-08 00:31:12 +00:00
|
|
|
, deploy
|
2022-03-04 14:11:19 +00:00
|
|
|
, tritonshell
|
2021-05-13 17:35:23 +00:00
|
|
|
, ...
|
|
|
|
} @ inputs:
|
2021-07-16 21:01:25 +00:00
|
|
|
digga.lib.mkFlake
|
|
|
|
{
|
|
|
|
inherit self inputs;
|
|
|
|
|
|
|
|
channelsConfig = { allowUnfree = true; };
|
|
|
|
|
2022-01-31 16:51:42 +00:00
|
|
|
supportedSystems = [ "x86_64-linux" "aarch64-linux" ];
|
|
|
|
|
2021-07-16 21:01:25 +00:00
|
|
|
channels = {
|
|
|
|
nixos = {
|
2021-07-20 23:33:45 +00:00
|
|
|
imports = [ (digga.lib.importOverlays ./overlays) ];
|
2021-07-16 21:01:25 +00:00
|
|
|
overlays = [
|
|
|
|
nur.overlay
|
|
|
|
agenix.overlay
|
|
|
|
nvfetcher.overlay
|
|
|
|
./pkgs/default.nix
|
|
|
|
];
|
|
|
|
};
|
2021-11-30 00:38:56 +00:00
|
|
|
latest = { };
|
2022-01-31 16:52:56 +00:00
|
|
|
master = { };
|
2021-07-16 21:01:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
lib = import ./lib { lib = digga.lib // nixos.lib; };
|
2021-04-22 03:44:15 +00:00
|
|
|
|
2021-07-16 21:01:25 +00:00
|
|
|
sharedOverlays = [
|
|
|
|
(final: prev: {
|
|
|
|
__dontExport = true;
|
|
|
|
lib = prev.lib.extend (lfinal: lprev: {
|
|
|
|
our = self.lib;
|
|
|
|
});
|
|
|
|
})
|
|
|
|
];
|
2021-04-22 03:44:15 +00:00
|
|
|
|
|
|
|
nixos = {
|
2021-07-16 21:01:25 +00:00
|
|
|
hostDefaults = {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
channelName = "nixos";
|
2021-10-11 22:11:36 +00:00
|
|
|
imports = [ (digga.lib.importExportableModules ./modules) ];
|
|
|
|
modules = [
|
2021-07-16 21:01:25 +00:00
|
|
|
{ lib.our = self.lib; }
|
2021-07-21 01:59:50 +00:00
|
|
|
digga.nixosModules.bootstrapIso
|
2021-07-16 21:01:25 +00:00
|
|
|
digga.nixosModules.nixConfig
|
|
|
|
home.nixosModules.home-manager
|
|
|
|
agenix.nixosModules.age
|
2021-07-21 04:36:41 +00:00
|
|
|
bud.nixosModules.bud
|
2021-07-16 21:01:25 +00:00
|
|
|
];
|
|
|
|
};
|
2021-05-14 00:03:51 +00:00
|
|
|
|
2021-07-20 23:33:45 +00:00
|
|
|
imports = [ (digga.lib.importHosts ./hosts) ];
|
2021-07-16 21:01:25 +00:00
|
|
|
hosts = {
|
|
|
|
/* set host specific properties here */
|
2021-10-24 20:03:28 +00:00
|
|
|
PubSolarOS = { };
|
2022-01-19 00:13:15 +00:00
|
|
|
fae = {
|
|
|
|
system = "aarch64-linux";
|
|
|
|
};
|
2021-05-27 17:41:55 +00:00
|
|
|
};
|
2021-07-16 21:01:25 +00:00
|
|
|
importables = rec {
|
2021-07-20 23:33:45 +00:00
|
|
|
profiles = digga.lib.rakeLeaves ./profiles // {
|
|
|
|
users = digga.lib.rakeLeaves ./users;
|
2021-07-16 21:01:25 +00:00
|
|
|
};
|
|
|
|
suites = with profiles; rec {
|
2021-10-24 20:03:28 +00:00
|
|
|
base = [ core users.pub-solar users.root ];
|
2022-01-31 16:47:45 +00:00
|
|
|
iso = base ++ [ base-user graphical pub-solar-iso ];
|
2021-10-24 20:55:28 +00:00
|
|
|
pubsolaros = [ core full-install base-user users.root ];
|
2021-10-24 20:03:28 +00:00
|
|
|
anonymous = [ pubsolaros users.pub-solar ];
|
2021-07-17 13:49:07 +00:00
|
|
|
teutat3s = pubsolaros ++ [ users.teutat3s ];
|
|
|
|
dumpyourvms = teutat3s ++ [ graphical ];
|
|
|
|
ryzensun = teutat3s ++ [ graphical ];
|
2021-07-16 21:01:25 +00:00
|
|
|
};
|
2021-05-27 17:41:55 +00:00
|
|
|
};
|
2021-04-22 03:44:15 +00:00
|
|
|
};
|
2021-07-16 21:01:25 +00:00
|
|
|
|
|
|
|
home = {
|
2021-10-11 22:11:36 +00:00
|
|
|
imports = [ (digga.lib.importExportableModules ./users/modules) ];
|
|
|
|
modules = [ ];
|
2021-07-16 21:01:25 +00:00
|
|
|
importables = rec {
|
2021-07-20 23:33:45 +00:00
|
|
|
profiles = digga.lib.rakeLeaves ./users/profiles;
|
2021-07-16 21:01:25 +00:00
|
|
|
suites = with profiles; rec {
|
2021-09-21 20:27:53 +00:00
|
|
|
base = [ direnv ];
|
2021-07-16 21:01:25 +00:00
|
|
|
};
|
2021-05-27 17:41:55 +00:00
|
|
|
};
|
2021-07-16 21:01:25 +00:00
|
|
|
users = {
|
2021-10-24 20:03:28 +00:00
|
|
|
pub-solar = { suites, ... }: { imports = suites.base; };
|
2022-01-31 16:52:56 +00:00
|
|
|
teutat3s = { suites, ... }: { imports = suites.base; };
|
2021-07-16 21:01:25 +00:00
|
|
|
}; # digga.lib.importers.rakeLeaves ./users/hm;
|
2021-04-22 03:44:15 +00:00
|
|
|
};
|
|
|
|
|
2021-07-21 04:36:41 +00:00
|
|
|
devshell = ./shell;
|
2021-05-29 19:53:33 +00:00
|
|
|
|
2021-07-16 21:01:25 +00:00
|
|
|
homeConfigurations = digga.lib.mkHomeConfigurations self.nixosConfigurations;
|
2021-05-02 17:35:29 +00:00
|
|
|
|
2022-01-19 00:13:15 +00:00
|
|
|
deploy.nodes = digga.lib.mkDeployNodes self.nixosConfigurations {
|
|
|
|
fae = {
|
2022-01-31 16:51:42 +00:00
|
|
|
hostname = "fae.fritz.box:22";
|
|
|
|
sshUser = "pub-solar";
|
|
|
|
fastConnect = true;
|
2022-01-19 00:13:15 +00:00
|
|
|
profilesOrder = [ "system" "direnv" ];
|
|
|
|
profiles.direnv = {
|
2022-01-31 16:45:26 +00:00
|
|
|
user = "pub-solar";
|
|
|
|
path = deploy.lib.x86_64-linux.activate.home-manager self.homeConfigurationsPortable.x86_64-linux.pub-solar;
|
2022-01-19 00:13:15 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2021-05-02 17:35:29 +00:00
|
|
|
|
2021-07-16 21:01:25 +00:00
|
|
|
defaultTemplate = self.templates.bud;
|
|
|
|
templates.bud.path = ./.;
|
|
|
|
templates.bud.description = "bud template";
|
2021-04-22 03:44:15 +00:00
|
|
|
|
2021-07-16 21:01:25 +00:00
|
|
|
}
|
2021-07-08 00:31:12 +00:00
|
|
|
//
|
|
|
|
{
|
2021-12-29 23:41:58 +00:00
|
|
|
budModules = { devos = import ./shell/bud; };
|
2021-04-22 03:44:15 +00:00
|
|
|
}
|
|
|
|
;
|
2019-12-03 05:18:30 +00:00
|
|
|
}
|