~rhaenys/infra-essos

ref: 3cda9d73aa2783d38b4decfc3820a002fbfb1f62 infra-essos/flake.nix -rw-r--r-- 697 bytes
3cda9d73 — rhaenys feat: initial commit w proxmox 8 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
25
26
27
{
  description = "Renesto's Nix configurations";

  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
    #proxmox-nixos.url = "github:SaumonNet/proxmox-nixos";
    proxmox-nixos.url = "github:5aaee9/proxmox-nixos";
  };

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

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