bucur/flake.nix

54 lines
1.6 KiB
Nix
Raw Normal View History

2026-02-05 17:57:02 +02:00
{
description = "Bucur NixOS configuration";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
sops-nix.url = "github:Mic92/sops-nix";
sops-nix.inputs.nixpkgs.follows = "nixpkgs";
sublunar.url = "git+https://codeberg.org/randogoth/sublunar.git";
sublunar.flake = false;
flux_vision.url = "git+https://codeberg.org/randogoth/flux.vision.git";
flux_vision.flake = false;
nfc_web.url = "git+https://codeberg.org/randogoth/nfc-web.git";
nfc_web.flake = false;
scopesessions.url = "git+https://codeberg.org/randogoth/scopesessions.org.git";
scopesessions.flake = false;
sublunar_almanac.url = "git+https://codeberg.org/randogoth/sublunar.almanac.git";
sublunar_almanac.flake = false;
praxis.url = "git+https://codeberg.org/randogoth/praxis.git";
praxis.flake = false;
geoblog_plugin.url = "git+https://codeberg.org/randogoth/geoblog-plugin.git";
geoblog_plugin.flake = false;
};
outputs = { self, nixpkgs, sops-nix, ... }@inputs:
let
system = "x86_64-linux";
in
{
nixosConfigurations.bucur = nixpkgs.lib.nixosSystem {
inherit system;
specialArgs = { inherit inputs; };
modules = [
sops-nix.nixosModules.sops
./hosts/bucur.nix
./hosts/bucur-hardware.nix
2026-02-05 17:57:02 +02:00
./modules/services/caddy.nix
./modules/services/openssh.nix
./modules/services/firewall.nix
./modules/services/tailscale.nix
./modules/services/podman.nix
./modules/services/static-sites
./modules/users/tobias.nix
];
};
};
}