initial retooling #1

Merged
naturallaw777 merged 1130 commits from staging-dev into stable 2026-05-21 08:10:11 -05:00
3 changed files with 10 additions and 5 deletions
Showing only changes of commit 5747a18691 - Show all commits
+3 -3
View File
@@ -1,10 +1,10 @@
{ config, pkgs, lib, ... }:
{ config, pkgs, lib, roleStateFile, customFile, ... }:
{
imports = [
./modules/modules.nix
/etc/nixos/role-state.nix
/etc/nixos/custom.nix
roleStateFile
customFile
./iso/branding.nix
];
+1 -1
View File
@@ -10,7 +10,7 @@
# #
# After making changes, rebuild with: #
# #
# sudo nixos-rebuild switch --impure #
# nixos-rebuild switch #
# #
###########################################################
+6 -1
View File
@@ -22,8 +22,13 @@
in
{
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
roleStateFile = /etc/nixos/role-state.nix;
customFile = /etc/nixos/custom.nix;
};
modules = [
{ nixpkgs.hostPlatform = "x86_64-linux"; }
self.nixosModules.Sovran_SystemsOS
];
};