diff options
| author | Martin Fischer <martin@push-f.com> | 2026-09-25 11:37:45 +0200 |
|---|---|---|
| committer | Martin Fischer <martin@push-f.com> | 2026-09-25 11:44:29 +0200 |
| commit | d1f67c929ae7397b7ae241bb59932113b5f9e4c1 (patch) | |
| tree | a7606f0e44e9d2f5b818fca346c203eb1631c3a3 | |
| parent | 74ed949364da67dfebc05723da099a7ec53f328c (diff) | |
| -rw-r--r-- | nixos/profiles/workstation/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/profiles/workstation/default.nix b/nixos/profiles/workstation/default.nix index cb720be..e6fc7e1 100644 --- a/nixos/profiles/workstation/default.nix +++ b/nixos/profiles/workstation/default.nix @@ -3,7 +3,7 @@ let cfg = config.workstation; sources = import <top/npins>; - cmd50 = pkgs.callPackage "${sources.my-cmd50}" {}; + cmd50 = pkgs.callPackage (sources.my-cmd50 { inherit pkgs; }) {}; in { options.workstation = { @@ -69,7 +69,7 @@ in environment.systemPackages = with pkgs; [ npins - (callPackage "${sources.agenix}/pkgs/agenix.nix" {}) + (callPackage ((sources.agenix { inherit pkgs; }) + "/pkgs/agenix.nix") {}) (callPackage (sources.my-vdf { inherit pkgs; }) {}) nixfmt |
