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
|
|
|
|
2022-02-02 03:15:24 +00:00
|
|
|
nixConfig.extra-experimental-features = "nix-command flakes";
|
2022-04-26 09:30:17 +00:00
|
|
|
nixConfig.extra-substituters = "https://nix-dram.cachix.org https://dram.cachix.org https://nrdxp.cachix.org https://nix-community.cachix.org";
|
|
|
|
nixConfig.extra-trusted-public-keys = "nix-dram.cachix.org-1:CKjZ0L1ZiqH3kzYAZRt8tg8vewAx5yj8Du/+iR8Efpg= dram.cachix.org-1:baoy1SXpwYdKbqdTbfKGTKauDDeDlHhUpC+QuuILEMY= nrdxp.cachix.org-1:Fc5PSqY2Jm1TrWfm88l6cvGWwz3s93c6IOifQWnhNW4= nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=";
|
2021-07-16 21:09:26 +00:00
|
|
|
|
2020-08-02 04:08:41 +00:00
|
|
|
inputs = {
|
2022-04-09 14:40:03 +00:00
|
|
|
# Track channels with commits tested and built by hydra
|
2023-01-28 20:40:44 +00:00
|
|
|
nixos.url = "github:nixos/nixpkgs/nixos-22.11";
|
2021-08-06 01:30:40 +00:00
|
|
|
latest.url = "github:nixos/nixpkgs/nixos-unstable";
|
2022-11-20 22:28:23 +00:00
|
|
|
|
2022-11-07 10:24:59 +00:00
|
|
|
flake-compat.url = "github:edolstra/flake-compat";
|
|
|
|
flake-compat.flake = false;
|
2022-11-20 22:28:23 +00:00
|
|
|
|
2022-08-27 11:49:55 +00:00
|
|
|
digga.url = "github:pub-solar/digga/fix/bootstrap-iso";
|
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";
|
2022-02-02 03:15:24 +00:00
|
|
|
digga.inputs.deploy.follows = "deploy";
|
2023-02-01 10:29:34 +00:00
|
|
|
digga.inputs.darwin.follows = "darwin";
|
|
|
|
digga.inputs.flake-compat.follows = "flake-compat";
|
2022-11-20 22:28:23 +00:00
|
|
|
|
2023-01-28 20:40:44 +00:00
|
|
|
home.url = "github:nix-community/home-manager/release-22.11";
|
2021-02-07 21:24:41 +00:00
|
|
|
home.inputs.nixpkgs.follows = "nixos";
|
2022-11-20 22:28:23 +00:00
|
|
|
|
2021-03-02 03:30:47 +00:00
|
|
|
darwin.url = "github:LnL7/nix-darwin";
|
2022-02-02 03:15:24 +00:00
|
|
|
darwin.inputs.nixpkgs.follows = "nixos";
|
2022-11-20 22:28:23 +00:00
|
|
|
|
2022-02-18 00:22:48 +00:00
|
|
|
deploy.url = "github:serokell/deploy-rs";
|
2022-02-02 03:15:24 +00:00
|
|
|
deploy.inputs.nixpkgs.follows = "nixos";
|
2023-02-01 10:29:34 +00:00
|
|
|
deploy.inputs.flake-compat.follows = "flake-compat";
|
2022-11-20 22:28:23 +00:00
|
|
|
|
2021-05-13 17:35:23 +00:00
|
|
|
agenix.url = "github:ryantm/agenix";
|
2022-02-02 03:15:24 +00:00
|
|
|
agenix.inputs.nixpkgs.follows = "nixos";
|
2023-02-01 10:29:34 +00:00
|
|
|
agenix.inputs.darwin.follows = "darwin";
|
2022-11-20 22:28:23 +00:00
|
|
|
|
2021-03-02 03:30:47 +00:00
|
|
|
nixos-hardware.url = "github:nixos/nixos-hardware";
|
2022-11-20 22:28:23 +00:00
|
|
|
};
|
|
|
|
|
2021-05-13 17:35:23 +00:00
|
|
|
outputs = {
|
2022-11-20 22:28:23 +00:00
|
|
|
self,
|
|
|
|
digga,
|
|
|
|
nixos,
|
|
|
|
home,
|
2021-05-13 17:35:23 +00:00
|
|
|
nixos-hardware,
|
2022-11-20 22:28:23 +00:00
|
|
|
nur,
|
|
|
|
agenix,
|
|
|
|
deploy,
|
|
|
|
...
|
2021-05-13 17:35:23 +00:00
|
|
|
} @ inputs:
|
2021-07-16 21:01:25 +00:00
|
|
|
digga.lib.mkFlake
|
2020-08-02 04:08:41 +00:00
|
|
|
{
|
2021-07-12 22:32:13 +00:00
|
|
|
inherit self inputs;
|
2021-07-15 22:15:18 +00:00
|
|
|
|
|
|
|
channelsConfig = {
|
2022-02-02 03:15:24 +00:00
|
|
|
# allowUnfree = true;
|
2020-08-02 04:08:41 +00:00
|
|
|
};
|
2019-12-14 04:39:25 +00:00
|
|
|
|
2021-07-16 21:01:25 +00:00
|
|
|
supportedSystems = ["x86_64-linux" "aarch64-linux"];
|
|
|
|
|
2022-08-14 12:15:02 +00:00
|
|
|
channels = {
|
2021-07-16 21:01:25 +00:00
|
|
|
nixos = {
|
2022-08-14 12:15:02 +00:00
|
|
|
imports = [(digga.lib.importOverlays ./overlays)];
|
|
|
|
overlays = [];
|
|
|
|
};
|
2022-01-31 16:52:56 +00:00
|
|
|
latest = {};
|
2022-11-20 22:28:23 +00:00
|
|
|
};
|
2021-07-16 21:01:25 +00:00
|
|
|
|
2022-01-31 16:47:45 +00:00
|
|
|
lib = import ./lib {lib = digga.lib // nixos.lib;};
|
2022-11-20 22:28:23 +00:00
|
|
|
|
2022-01-31 16:47:45 +00:00
|
|
|
sharedOverlays = [
|
2021-07-16 21:01:25 +00:00
|
|
|
(final: prev: {
|
|
|
|
__dontExport = true;
|
2022-01-31 16:47:45 +00:00
|
|
|
lib = prev.lib.extend (lfinal: lprev: {
|
2021-07-16 21:01:25 +00:00
|
|
|
our = self.lib;
|
2022-11-20 22:28:23 +00:00
|
|
|
});
|
|
|
|
})
|
2022-01-31 16:47:45 +00:00
|
|
|
nur.overlay
|
2023-02-01 10:14:50 +00:00
|
|
|
agenix.overlays.default
|
2022-11-20 22:28:23 +00:00
|
|
|
|
2022-08-14 12:21:11 +00:00
|
|
|
(import ./pkgs)
|
2022-01-31 16:47:45 +00:00
|
|
|
];
|
2022-11-20 22:28:23 +00:00
|
|
|
|
2021-04-22 03:44:15 +00:00
|
|
|
nixos = {
|
2021-07-16 21:01:25 +00:00
|
|
|
hostDefaults = {
|
2022-01-31 16:47:45 +00:00
|
|
|
system = "x86_64-linux";
|
2021-07-16 21:01:25 +00:00
|
|
|
channelName = "nixos";
|
2021-07-20 23:33:45 +00:00
|
|
|
imports = [(digga.lib.importExportableModules ./modules)];
|
2022-08-14 12:21:11 +00:00
|
|
|
modules = [
|
2022-01-31 16:52:56 +00:00
|
|
|
{lib.our = self.lib;}
|
2022-09-01 12:34:57 +00:00
|
|
|
# FIXME: upstream module causes a huge number of unnecessary
|
2022-01-31 16:52:56 +00:00
|
|
|
# dependencies to be pulled in for all systems -- many of them are
|
2022-09-01 12:34:57 +00:00
|
|
|
# graphical. should only be imported as needed.
|
|
|
|
# digga.nixosModules.bootstrapIso
|
2021-07-16 21:01:25 +00:00
|
|
|
digga.nixosModules.nixConfig
|
|
|
|
home.nixosModules.home-manager
|
|
|
|
agenix.nixosModules.age
|
2022-01-31 16:52:56 +00:00
|
|
|
];
|
2021-07-16 21:01:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
imports = [(digga.lib.importHosts ./hosts)];
|
2021-04-22 03:44:15 +00:00
|
|
|
hosts = {
|
2022-11-20 22:28:23 +00:00
|
|
|
/*
|
2021-07-16 21:01:25 +00:00
|
|
|
set host specific properties here
|
2022-11-20 22:28:23 +00:00
|
|
|
*/
|
2021-07-16 21:01:25 +00:00
|
|
|
bootstrap = {
|
2021-10-11 22:11:36 +00:00
|
|
|
modules = [
|
2022-09-01 12:34:57 +00:00
|
|
|
digga.nixosModules.bootstrapIso
|
2021-07-16 21:01:25 +00:00
|
|
|
];
|
|
|
|
};
|
2022-06-04 21:45:06 +00:00
|
|
|
PubSolarOS = {
|
|
|
|
tests = [
|
|
|
|
(import ./tests/first-test.nix {
|
|
|
|
pkgs = nixos.legacyPackages.x86_64-linux;
|
|
|
|
lib = nixos.lib;
|
|
|
|
})
|
|
|
|
];
|
2021-05-27 17:41:55 +00:00
|
|
|
};
|
2022-11-20 22:28:23 +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 {
|
2023-03-06 23:48:42 +00:00
|
|
|
base = [ base-user users.root users.barkeeper ];
|
|
|
|
|
|
|
|
host_001_momo_koeln = base;
|
2021-05-27 17:41:55 +00:00
|
|
|
};
|
2021-04-22 03:44:15 +00:00
|
|
|
};
|
2022-11-20 22:28:23 +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 {
|
|
|
|
base = [direnv git];
|
2021-05-27 17:41:55 +00:00
|
|
|
};
|
2021-04-22 03:44:15 +00:00
|
|
|
};
|
2021-07-16 21:01:25 +00:00
|
|
|
users = {
|
2023-03-06 23:48:42 +00:00
|
|
|
barkeeper = {suites, ...}: {
|
2023-01-29 01:40:14 +00:00
|
|
|
imports = suites.base;
|
|
|
|
|
2023-03-06 23:48:42 +00:00
|
|
|
home.stateVersion = "22.05";
|
2023-01-29 01:40:14 +00:00
|
|
|
};
|
2021-07-16 21:01:25 +00:00
|
|
|
}; # digga.lib.importers.rakeLeaves ./users/hm;
|
2022-11-20 22:28:23 +00:00
|
|
|
};
|
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
|
|
|
|
2023-03-06 23:48:42 +00:00
|
|
|
deploy.nodes = digga.lib.mkDeployNodes self.nixosConfigurations {
|
|
|
|
host_001_momo_koeln = {
|
|
|
|
hostname = "80.244.242.4";
|
|
|
|
sshUser = "barkeeper";
|
|
|
|
};
|
|
|
|
};
|
2022-08-13 20:35:43 +00:00
|
|
|
};
|
2019-12-03 05:18:30 +00:00
|
|
|
}
|