refactor: centralize SOPS configuration in separate file
All checks were successful
Flake checker / Build Nix targets (push) Successful in 9m29s
All checks were successful
Flake checker / Build Nix targets (push) Successful in 9m29s
This commit is contained in:
@@ -306,6 +306,10 @@
|
||||
name = device.name;
|
||||
user = device.user;
|
||||
is = name: device.name == name;
|
||||
home =
|
||||
if isDarwin
|
||||
then "/Users/${device.user}"
|
||||
else "/home/${device.user}";
|
||||
};
|
||||
|
||||
nixos_devices = nixpkgs.lib.attrsets.filterAttrs (n: x: x.isNix) devices;
|
||||
@@ -373,6 +377,7 @@
|
||||
overlays = import ./overlays.nix {
|
||||
inherit inputs;
|
||||
};
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
in {
|
||||
packages = rec {
|
||||
|
||||
Reference in New Issue
Block a user