flake: dedup specialArgs

This commit is contained in:
Dmitriy Pleshevskiy 2025-03-06 17:12:06 +03:00
parent 4e45343f88
commit 250931a8fd
Signed by: pleshevskiy
GPG key ID: 17041163DA10A9A2

View file

@ -73,6 +73,15 @@
(hostname: { system, ... }: system == x86_64-darwin) (hostname: { system, ... }: system == x86_64-darwin)
hosts; hosts;
baseSpecialArgs = {
inherit inputs;
globalData = import ./data.nix;
usersPath = ./users;
hostsPath = ./hosts;
packagesPath = ./packages;
sharedPath = ./shared;
};
mkDeploymentModule = { targetHost, system, ... }: ({ lib, ... }: { mkDeploymentModule = { targetHost, system, ... }: ({ lib, ... }: {
options.deployment = with lib; { options.deployment = with lib; {
system = mkOption { system = mkOption {
@ -93,10 +102,7 @@
home-manager.backupFileExtension = "backup"; home-manager.backupFileExtension = "backup";
home-manager.useGlobalPkgs = true; home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true; home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = { home-manager.extraSpecialArgs = baseSpecialArgs;
packagesPath = ./packages;
hostsPath = ./hosts;
};
home-manager.sharedModules = [ home-manager.sharedModules = [
{ {
imports = [ imports = [
@ -197,14 +203,7 @@
nixpkgs.lib.nixosSystem { nixpkgs.lib.nixosSystem {
inherit system; inherit system;
specialArgs = { specialArgs = baseSpecialArgs // specialArgs;
inherit inputs;
globalData = import ./data.nix;
usersPath = ./users;
hostsPath = ./hosts;
packagesPath = ./packages;
sharedPath = ./shared;
} // specialArgs;
modules = modules =
(with inputs; [ (with inputs; [
@ -231,14 +230,7 @@
, targetHost ? null , targetHost ? null
}: }:
inputs.nix-darwin.lib.darwinSystem { inputs.nix-darwin.lib.darwinSystem {
inputs = { specialArgs = baseSpecialArgs // specialArgs;
inherit inputs;
globalData = import ./data.nix;
usersPath = ./users;
hostsPath = ./hosts;
packagesPath = ./packages;
sharedPath = ./shared;
} // specialArgs;
modules = modules =
(with inputs; [ (with inputs; [