From 45e930984c27098e08a85f85068fa5b9cdc8c33e Mon Sep 17 00:00:00 2001 From: naturallaw77 Date: Sun, 29 Mar 2026 07:41:26 -0500 Subject: [PATCH] fixed retooling for flake.nix --- configuration.nix | 4 +--- flake.nix | 6 ++---- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/configuration.nix b/configuration.nix index fb1dd41..5b1c20d 100644 --- a/configuration.nix +++ b/configuration.nix @@ -1,10 +1,8 @@ -{ config, pkgs, lib, roleStateFile, customFile, ... }: +{ config, pkgs, lib, ... }: { imports = [ ./modules/modules.nix - roleStateFile - customFile ./iso/branding.nix ]; diff --git a/flake.nix b/flake.nix index 5adcddf..f655fb1 100755 --- a/flake.nix +++ b/flake.nix @@ -23,12 +23,10 @@ { nixosConfigurations.nixos = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; - specialArgs = { - roleStateFile = /etc/nixos/role-state.nix; - customFile = /etc/nixos/custom.nix; - }; modules = [ self.nixosModules.Sovran_SystemsOS + /etc/nixos/role-state.nix + /etc/nixos/custom.nix ]; };