flake: dedup specialArgs
This commit is contained in:
parent
4e45343f88
commit
250931a8fd
1 changed files with 12 additions and 20 deletions
32
flake.nix
32
flake.nix
|
@ -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; [
|
||||||
|
|
Loading…
Add table
Reference in a new issue