43 lines
1.3 KiB
Nix
43 lines
1.3 KiB
Nix
{
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
nix-writers = {
|
|
url = "git+https://cgit.krebsco.de/nix-writers";
|
|
flake = false;
|
|
};
|
|
# disko.url = "github:nix-community/disko";
|
|
# disko.inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
description = "stockholm";
|
|
|
|
outputs = { self, nixpkgs, nix-writers }: {
|
|
nixosConfigurations.hotdog = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
specialArgs.stockholm = self;
|
|
specialArgs.nix-writers = nix-writers;
|
|
specialArgs.secrets = toString ./krebs/0tests/data/secrets;
|
|
modules = [
|
|
./krebs/1systems/hotdog/config.nix
|
|
];
|
|
};
|
|
|
|
nixosModules =
|
|
let
|
|
inherit (nixpkgs) lib;
|
|
in builtins.listToAttrs
|
|
(map
|
|
(name: {name = lib.removeSuffix ".nix" name; value = import (./krebs/3modules + "/${name}");})
|
|
(lib.filter
|
|
(name: name != "default.nix" && !lib.hasPrefix "." name)
|
|
(lib.attrNames (builtins.readDir ./krebs/3modules))));
|
|
|
|
kartei = {
|
|
hosts = self.nixosConfigurations.hotdog.config.krebs.hosts;
|
|
users = self.nixosConfigurations.hotdog.config.krebs.users;
|
|
};
|
|
overlays.default = import ./krebs/5pkgs/default.nix;
|
|
lib = import (self.outPath + "/lib/pure.nix") { lib = nixpkgs.lib; };
|
|
};
|
|
}
|