~rhaenys/infra-essos

infra-essos/flake.nix -rw-r--r-- 535 bytes
110e13b8 — rhaenys feat: major refact, proxmox -> libvirtd 5 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  description = "Renesto's Nix configurations";

  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
  };

  outputs = { nixpkgs, proxmox-nixos, ... }@inputs: let
    inherit (nixpkgs.lib) nixosSystem;

    overlays = [ ];
  in rec {
    nixosConfigurations = {
      essos = nixosSystem {
        system = "x86_64-linux";
        modules = [ 
          ./nixos/essos/configuration.nix 
          ./nixos/common.nix 
        ];
        specialArgs = { inherit inputs; overlays = overlays; };
      };
    };
  };
}