♻️ refactor flake-utils usage

This commit is contained in:
2025-06-01 14:21:00 -04:00
parent 38aff239a0
commit 7b8c02a19e
3 changed files with 28 additions and 48 deletions

View File

@ -13,7 +13,6 @@ let
hostSystem = self.hosts.${hostName}.system;
in
nixpkgs.lib.nixosSystem {
system = hostSystem;
modules = [
home-manager.nixosModules.home-manager
(_: {
@ -21,6 +20,7 @@ let
nixpkgs.overlays = [ self.overlays.default ];
nixpkgs.config.allowUnfree = true;
})
{ nixpkgs.hostPlatform = hostSystem; }
] ++ modules;
specialArgs = { inherit raspberry-pi-nix sops-nix; };
};