pub-solar-os/flake.nix

133 lines
3.6 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.";
inputs =
{
2021-06-19 18:26:07 +00:00
nixos.url = "nixpkgs/release-21.05";
2021-04-22 03:44:15 +00:00
latest.url = "nixpkgs";
2021-06-19 18:26:07 +00:00
digga = {
url = "github:divnix/digga/develop";
inputs.nipxkgs.follows = "latest";
};
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";
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";
home.inputs.nixpkgs.follows = "nixos";
2021-06-19 18:26:07 +00:00
# naersk.url = "github:nmattia/naersk";
# naersk.inputs.nixpkgs.follows = "latest";
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
nvfetcher.url = "github:berberman/nvfetcher";
nvfetcher.inputs.nixpkgs.follows = "latest";
};
outputs =
{ self
, digga
, nixos
, ci-agent
, home
, nixos-hardware
, nur
, agenix
, nvfetcher
, ...
} @ 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 = {
imports = [ (digga.lib.importers.overlays ./overlays) ];
overlays = [
nur.overlay
agenix.overlay
nvfetcher.overlay
./pkgs/default.nix
];
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
sharedOverlays = [
(final: prev: {
2021-06-19 18:26:07 +00:00
__dontExport = true;
lib = prev.lib.extend (lfinal: lprev: {
our = self.lib;
});
})
];
2021-04-22 03:44:15 +00:00
nixos = {
hostDefaults = {
system = "x86_64-linux";
channelName = "nixos";
2021-06-19 18:26:07 +00:00
imports = [ (digga.lib.importers.modules ./modules) ];
2021-04-22 03:44:15 +00:00
externalModules = [
{ lib.our = self.lib; }
2021-04-22 03:44:15 +00:00
ci-agent.nixosModules.agent-profile
home.nixosModules.home-manager
agenix.nixosModules.age
2021-04-22 03:44:15 +00:00
];
};
imports = [ (digga.lib.importers.hosts ./hosts) ];
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-04-22 03:44:15 +00:00
};
};
home = {
2021-06-19 18:26:07 +00:00
imports = [ (digga.lib.importers.modules ./users/modules) ];
2021-04-22 03:44:15 +00:00
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, ... }: {
commands = [
{ package = pkgs.agenix; category = "secrets"; }
{
name = pkgs.nvfetcher-bin.pname;
help = pkgs.nvfetcher-bin.meta.description;
command = "cd $DEVSHELL_ROOT/pkgs; ${pkgs.nvfetcher-bin}/bin/nvfetcher -c ./sources.toml --no-output $@; nixpkgs-fmt _sources/";
}
];
2021-05-29 19:53:33 +00:00
};
2021-05-14 17:17:53 +00:00
homeConfigurations = digga.lib.mkHomeConfigurations self.nixosConfigurations;
2021-05-14 17:17:53 +00:00
deploy.nodes = digga.lib.mkDeployNodes self.nixosConfigurations { };
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
}