os/flake.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

155 lines
4.3 KiB
Nix
Raw Normal View History

2019-12-03 05:18:30 +00:00
{
2019-12-05 08:36:15 +00:00
description = "A highly structured configuration database.";
2022-02-02 03:15:24 +00:00
nixConfig.extra-experimental-features = "nix-command flakes";
inputs = {
# Track channels with commits tested and built by hydra
nixos.url = "github:nixos/nixpkgs/nixos-22.11";
latest.url = "github:nixos/nixpkgs/nixos-unstable";
2022-11-20 22:28:23 +00:00
flake-compat.url = "github:edolstra/flake-compat";
flake-compat.flake = false;
2022-11-20 22:28:23 +00:00
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";
2022-02-02 03:15:24 +00:00
digga.inputs.deploy.follows = "deploy";
digga.inputs.darwin.follows = "darwin";
digga.inputs.flake-compat.follows = "flake-compat";
2022-11-20 22:28:23 +00:00
home.url = "github:nix-community/home-manager/release-22.11";
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
deploy.url = "github:serokell/deploy-rs";
2022-02-02 03:15:24 +00:00
deploy.inputs.nixpkgs.follows = "nixos";
deploy.inputs.flake-compat.follows = "flake-compat";
2022-11-20 22:28:23 +00:00
agenix.url = "github:ryantm/agenix";
2022-02-02 03:15:24 +00:00
agenix.inputs.nixpkgs.follows = "nixos";
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
};
outputs = {
2022-11-20 22:28:23 +00:00
self,
digga,
nixos,
home,
nixos-hardware,
2022-11-20 22:28:23 +00:00
agenix,
deploy,
...
} @ inputs:
2021-07-16 21:01:25 +00:00
digga.lib.mkFlake
{
inherit self inputs;
channelsConfig = {
2022-02-02 03:15:24 +00:00
# allowUnfree = true;
};
2021-07-16 21:01:25 +00:00
supportedSystems = ["x86_64-linux" "aarch64-linux"];
channels = {
2021-07-16 21:01:25 +00:00
nixos = {
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
lib = import ./lib {lib = digga.lib // nixos.lib;};
2022-11-20 22:28:23 +00:00
sharedOverlays = [
2021-07-16 21:01:25 +00:00
(final: prev: {
__dontExport = true;
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
});
})
agenix.overlays.default
2022-11-20 22:28:23 +00:00
(import ./pkgs)
];
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 = {
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)];
modules = [
2022-01-31 16:52:56 +00:00
{lib.our = self.lib;}
# 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
# 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 = {
2023-03-27 11:36:56 +00:00
# Set host-specific properties here
2021-07-16 21:01:25 +00:00
bootstrap = {
modules = [
digga.nixosModules.bootstrapIso
2021-07-16 21:01:25 +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 {
base = [users.pub-solar users.root];
iso = base ++ [base-user graphical pub-solar-iso];
pubsolaros = [full-install base-user users.root];
2021-10-24 20:03:28 +00:00
anonymous = [pubsolaros users.pub-solar];
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 = {
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 = {
pub-solar = {suites, ...}: {
imports = suites.base;
home.stateVersion = "21.03";
};
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
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-07-16 21:01:25 +00:00
deploy.nodes = digga.lib.mkDeployNodes self.nixosConfigurations {};
};
2019-12-03 05:18:30 +00:00
}