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
|
|
|
|
2022-11-26 15:00:22 +00:00
|
|
|
inputs = {
|
|
|
|
# Track channels with commits tested and built by hydra
|
2023-01-28 21:02:35 +00:00
|
|
|
nixos-22-05.url = "github:nixos/nixpkgs/nixos-22.05";
|
2023-05-31 18:59:02 +00:00
|
|
|
nixos.url = "github:nixos/nixpkgs/nixos-23.05";
|
2022-11-26 15:00:22 +00:00
|
|
|
latest.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
master.url = "github:nixos/nixpkgs/master";
|
|
|
|
|
|
|
|
flake-compat.url = "github:edolstra/flake-compat";
|
|
|
|
flake-compat.flake = false;
|
|
|
|
|
|
|
|
digga.url = "github:pub-solar/digga/fix/bootstrap-iso";
|
|
|
|
digga.inputs.nixpkgs.follows = "nixos";
|
|
|
|
digga.inputs.nixlib.follows = "nixos";
|
|
|
|
digga.inputs.home-manager.follows = "home";
|
|
|
|
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-26 15:00:22 +00:00
|
|
|
|
2023-06-13 14:25:49 +00:00
|
|
|
home.url = "github:nix-community/home-manager/release-23.05";
|
2022-11-26 15:00:22 +00:00
|
|
|
home.inputs.nixpkgs.follows = "nixos";
|
|
|
|
|
|
|
|
darwin.url = "github:LnL7/nix-darwin";
|
|
|
|
darwin.inputs.nixpkgs.follows = "nixos";
|
|
|
|
|
|
|
|
deploy.url = "github:serokell/deploy-rs";
|
|
|
|
deploy.inputs.nixpkgs.follows = "nixos";
|
2023-02-01 10:29:34 +00:00
|
|
|
deploy.inputs.flake-compat.follows = "flake-compat";
|
2022-11-26 15:00:22 +00:00
|
|
|
|
|
|
|
agenix.url = "github:ryantm/agenix";
|
|
|
|
agenix.inputs.nixpkgs.follows = "nixos";
|
2023-02-01 10:29:34 +00:00
|
|
|
agenix.inputs.darwin.follows = "darwin";
|
2022-11-26 15:00:22 +00:00
|
|
|
|
|
|
|
nixos-hardware.url = "github:nixos/nixos-hardware";
|
|
|
|
|
2023-05-31 18:59:02 +00:00
|
|
|
nvfetcher.url = "github:berberman/nvfetcher";
|
|
|
|
nvfetcher.inputs.nixpkgs.follows = "nixos";
|
|
|
|
nvfetcher.inputs.flake-compat.follows = "flake-compat";
|
|
|
|
|
2022-11-26 15:00:22 +00:00
|
|
|
# PubSolarOS additions
|
2023-03-27 08:39:10 +00:00
|
|
|
triton-vmtools.url = "git+https://git.pub.solar/pub-solar/infra?ref=main&dir=vmtools";
|
2022-11-26 15:00:22 +00:00
|
|
|
triton-vmtools.inputs.nixpkgs.follows = "latest";
|
|
|
|
|
|
|
|
tritonshell.url = "git+https://git.greenbaum.cloud/dev/tritonshell?ref=main";
|
|
|
|
tritonshell.inputs.nixpkgs.follows = "latest";
|
|
|
|
};
|
|
|
|
|
|
|
|
outputs = {
|
|
|
|
self,
|
|
|
|
digga,
|
|
|
|
nixos,
|
|
|
|
home,
|
|
|
|
nixos-hardware,
|
|
|
|
agenix,
|
|
|
|
deploy,
|
|
|
|
tritonshell,
|
2023-05-31 18:59:02 +00:00
|
|
|
nvfetcher,
|
2022-11-26 15:00:22 +00:00
|
|
|
...
|
|
|
|
} @ inputs:
|
|
|
|
digga.lib.mkFlake
|
2020-08-02 04:08:41 +00:00
|
|
|
{
|
2022-11-26 15:00:22 +00:00
|
|
|
inherit self inputs;
|
2021-04-02 02:10:24 +00:00
|
|
|
|
2022-11-26 15:00:22 +00:00
|
|
|
channelsConfig = {
|
|
|
|
allowUnfree = true;
|
|
|
|
};
|
2021-07-15 22:15:18 +00:00
|
|
|
|
2023-06-28 17:20:11 +00:00
|
|
|
supportedSystems = ["x86_64-linux" "aarch64-linux" "aarch64-darwin"];
|
2021-04-02 02:10:24 +00:00
|
|
|
|
2022-11-26 15:00:22 +00:00
|
|
|
channels = {
|
|
|
|
nixos = {
|
|
|
|
imports = [(digga.lib.importOverlays ./overlays)];
|
2023-05-13 16:43:12 +00:00
|
|
|
overlays = [
|
|
|
|
deploy.overlay
|
|
|
|
(self: super: {
|
|
|
|
deploy-rs = {
|
2023-05-31 18:59:02 +00:00
|
|
|
inherit (inputs.nixos.legacyPackages.x86_64-linux) deploy-rs;
|
2023-05-13 16:43:12 +00:00
|
|
|
lib = super.deploy-rs.lib;
|
|
|
|
};
|
|
|
|
})
|
|
|
|
];
|
|
|
|
};
|
2023-05-31 18:59:02 +00:00
|
|
|
nixos-22-05 = {};
|
|
|
|
latest = {};
|
2022-11-26 15:00:22 +00:00
|
|
|
master = {};
|
|
|
|
};
|
2021-07-16 21:01:25 +00:00
|
|
|
|
2022-11-26 15:00:22 +00:00
|
|
|
lib = import ./lib {lib = digga.lib // nixos.lib;};
|
|
|
|
|
|
|
|
sharedOverlays = [
|
|
|
|
(final: prev: {
|
|
|
|
__dontExport = true;
|
|
|
|
lib = prev.lib.extend (lfinal: lprev: {
|
|
|
|
our = self.lib;
|
|
|
|
});
|
|
|
|
})
|
2023-02-01 10:14:50 +00:00
|
|
|
agenix.overlays.default
|
2023-05-31 18:59:02 +00:00
|
|
|
nvfetcher.overlays.default
|
2022-11-26 15:00:22 +00:00
|
|
|
|
|
|
|
(import ./pkgs)
|
|
|
|
];
|
|
|
|
|
|
|
|
nixos = {
|
|
|
|
hostDefaults = {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
channelName = "nixos";
|
|
|
|
imports = [(digga.lib.importExportableModules ./modules)];
|
|
|
|
modules = [
|
|
|
|
{lib.our = self.lib;}
|
|
|
|
# FIXME: upstream module causes a huge number of unnecessary
|
|
|
|
# dependencies to be pulled in for all systems -- many of them are
|
|
|
|
# graphical. should only be imported as needed.
|
|
|
|
# digga.nixosModules.bootstrapIso
|
|
|
|
digga.nixosModules.nixConfig
|
|
|
|
home.nixosModules.home-manager
|
|
|
|
agenix.nixosModules.age
|
|
|
|
];
|
2021-07-16 21:01:25 +00:00
|
|
|
};
|
|
|
|
|
2022-11-26 15:00:22 +00:00
|
|
|
imports = [(digga.lib.importHosts ./hosts)];
|
|
|
|
hosts = {
|
2023-03-27 11:36:56 +00:00
|
|
|
# Set host-specific properties here
|
2022-11-26 15:00:22 +00:00
|
|
|
bootstrap = {
|
2021-10-11 22:11:36 +00:00
|
|
|
modules = [
|
2022-11-26 15:00:22 +00:00
|
|
|
digga.nixosModules.bootstrapIso
|
2021-07-16 21:01:25 +00:00
|
|
|
];
|
|
|
|
};
|
2022-11-26 15:00:22 +00:00
|
|
|
PubSolarOS = {
|
|
|
|
tests = [
|
2023-05-14 15:36:34 +00:00
|
|
|
#(import ./tests/first-test.nix {
|
|
|
|
# pkgs = nixos.legacyPackages.x86_64-linux;
|
|
|
|
# lib = nixos.lib;
|
|
|
|
#})
|
2022-11-26 15:00:22 +00:00
|
|
|
];
|
|
|
|
};
|
|
|
|
fae = {
|
|
|
|
system = "aarch64-linux";
|
2021-05-27 17:41:55 +00:00
|
|
|
};
|
2022-11-26 15:00:22 +00:00
|
|
|
powder = {
|
|
|
|
system = "x86_64-linux";
|
2021-05-27 17:41:55 +00:00
|
|
|
};
|
2022-11-26 15:00:22 +00:00
|
|
|
};
|
|
|
|
importables = rec {
|
|
|
|
profiles =
|
|
|
|
digga.lib.rakeLeaves ./profiles
|
|
|
|
// {
|
2021-07-20 23:33:45 +00:00
|
|
|
users = digga.lib.rakeLeaves ./users;
|
2021-07-16 21:01:25 +00:00
|
|
|
};
|
2022-11-26 15:00:22 +00:00
|
|
|
suites = with profiles; rec {
|
|
|
|
base = [users.pub-solar users.root];
|
|
|
|
iso = base ++ [base-user graphical pub-solar-iso];
|
|
|
|
pubsolaros = [full-install base-user users.root];
|
|
|
|
anonymous = [pubsolaros users.pub-solar];
|
|
|
|
teutat3s = pubsolaros ++ [users.teutat3s];
|
|
|
|
dumpyourvms = teutat3s ++ [graphical];
|
|
|
|
ryzensun = teutat3s ++ [graphical];
|
2021-05-27 17:41:55 +00:00
|
|
|
};
|
2021-04-22 03:44:15 +00:00
|
|
|
};
|
2022-11-26 15:00:22 +00:00
|
|
|
};
|
2021-07-16 21:01:25 +00:00
|
|
|
|
2022-11-26 15:00:22 +00:00
|
|
|
home = {
|
|
|
|
imports = [(digga.lib.importExportableModules ./users/modules)];
|
|
|
|
modules = [];
|
|
|
|
importables = rec {
|
|
|
|
profiles = digga.lib.rakeLeaves ./users/profiles;
|
|
|
|
suites = with profiles; rec {
|
|
|
|
base = [direnv];
|
2021-05-27 17:41:55 +00:00
|
|
|
};
|
2021-04-22 03:44:15 +00:00
|
|
|
};
|
2022-11-26 15:00:22 +00:00
|
|
|
users = {
|
2023-01-29 01:40:14 +00:00
|
|
|
pub-solar = {suites, ...}: {
|
|
|
|
imports = suites.base;
|
|
|
|
|
2023-02-01 18:05:57 +00:00
|
|
|
home.stateVersion = "21.03";
|
|
|
|
};
|
|
|
|
teutat3s = {suites, ...}: {
|
|
|
|
imports = suites.base;
|
|
|
|
|
2023-01-29 01:40:14 +00:00
|
|
|
home.stateVersion = "21.03";
|
|
|
|
};
|
2022-11-26 15:00:22 +00:00
|
|
|
}; # digga.lib.importers.rakeLeaves ./users/hm;
|
|
|
|
};
|
2021-04-22 03:44:15 +00:00
|
|
|
|
2022-11-26 15:00:22 +00:00
|
|
|
devshell = ./shell;
|
2021-05-29 19:53:33 +00:00
|
|
|
|
2022-11-26 15:00:22 +00:00
|
|
|
homeConfigurations = digga.lib.mkHomeConfigurations self.nixosConfigurations;
|
2021-05-02 17:35:29 +00:00
|
|
|
|
2022-11-26 15:00:22 +00:00
|
|
|
deploy.nodes = digga.lib.mkDeployNodes self.nixosConfigurations {
|
|
|
|
fae = {
|
|
|
|
hostname = "fae.fritz.box:22";
|
|
|
|
sshUser = "pub-solar";
|
|
|
|
fastConnect = true;
|
|
|
|
profilesOrder = ["system" "direnv"];
|
|
|
|
profiles.direnv = {
|
|
|
|
user = "pub-solar";
|
2023-05-31 18:59:02 +00:00
|
|
|
path = self.channels.nixos.deploy-rs.lib.x86_64-linux.activate.home-manager self.homeConfigurationsPortable.x86_64-linux.pub-solar;
|
2022-01-19 00:13:15 +00:00
|
|
|
};
|
2022-11-26 15:00:22 +00:00
|
|
|
};
|
|
|
|
powder = {
|
|
|
|
hostname = "80.71.153.194";
|
|
|
|
sshUser = "root";
|
|
|
|
profilesOrder = ["system" "direnv"];
|
|
|
|
profiles.direnv = {
|
|
|
|
user = "pub-solar";
|
2023-05-31 18:59:02 +00:00
|
|
|
path = self.channels.nixos.deploy-rs.lib.x86_64-linux.activate.home-manager self.homeConfigurationsPortable.x86_64-linux.pub-solar;
|
2022-07-08 12:20:00 +00:00
|
|
|
};
|
2022-01-19 00:13:15 +00:00
|
|
|
};
|
2022-08-13 20:35:43 +00:00
|
|
|
};
|
2022-11-26 15:00:22 +00:00
|
|
|
};
|
2019-12-03 05:18:30 +00:00
|
|
|
}
|