Attempt to make new corp hardware the definitive corp hardware

This is...a big change. If I run this on the old corp server it will
break a lot, LOT of stuff. So don't do that. This is also the first time
I'm attempting to use disko to fully define a server in a single step
rather than as a bootstrapping step.
This commit is contained in:
Eli Ribble 2025-09-08 20:36:59 +00:00
parent 803e1d4b4f
commit 79c577cfff
5 changed files with 146 additions and 56 deletions

View file

@ -2,6 +2,10 @@
description = "Multi-host NixOS configuration";
inputs = {
disko = {
inputs.nixpkgs.follows = "nixpkgs";
url = "github:nix-community/disko";
};
home-manager = {
url = "github:nix-community/home-manager/release-25.05";
inputs.nixpkgs.follows = "nixpkgs";
@ -14,7 +18,7 @@
sops-nix.url = "github:Mic92/sops-nix";
};
outputs = { self, home-manager, nixpkgs, nixvim, sops-nix, ...}:
outputs = { self, disko, home-manager, nixpkgs, nixvim, sops-nix, ...}:
let
configFiles = pkgs.stdenv.mkDerivation {
name = "config-files";
@ -30,15 +34,15 @@
nixosConfigurations = {
corp = import ./system.nix {
configuration = ./host/corp/configuration.nix;
inherit configFiles home-manager nixpkgs nixvim sops-nix system;
inherit configFiles disko home-manager nixpkgs nixvim sops-nix system;
};
"sync.nidus.cloud" = import ./system.nix {
configuration = ./host/sync/configuration.nix;
inherit configFiles home-manager nixpkgs nixvim sops-nix system;
inherit configFiles disko home-manager nixpkgs nixvim sops-nix system;
};
test-corp = nixpkgs.lib.nixosSystem {
configuration = ./host/test-corp/configuration.nix;
inherit configFiles home-manager nixpkgs nixvim sops-nix system;
inherit configFiles disko home-manager nixpkgs nixvim sops-nix system;
};
};
};