fixed retooling for flake.nix

This commit is contained in:
2026-03-29 07:41:26 -05:00
parent 93a0d5b181
commit 45e930984c
2 changed files with 3 additions and 7 deletions

View File

@@ -1,10 +1,8 @@
{ config, pkgs, lib, roleStateFile, customFile, ... }: { config, pkgs, lib, ... }:
{ {
imports = [ imports = [
./modules/modules.nix ./modules/modules.nix
roleStateFile
customFile
./iso/branding.nix ./iso/branding.nix
]; ];

View File

@@ -23,12 +23,10 @@
{ {
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem { nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = {
roleStateFile = /etc/nixos/role-state.nix;
customFile = /etc/nixos/custom.nix;
};
modules = [ modules = [
self.nixosModules.Sovran_SystemsOS self.nixosModules.Sovran_SystemsOS
/etc/nixos/role-state.nix
/etc/nixos/custom.nix
]; ];
}; };