diff options
author | Martin Fischer <martin@push-f.com> | 2025-07-14 06:14:06 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2025-07-14 07:02:05 +0200 |
commit | 38f3f4750f43c8b4d8bb3df1cc8c8b5756ba95f4 (patch) | |
tree | 666e039c132f6ce26173356341516565b1a26689 | |
parent | 5b44c6f12f5a645d62b2bad3cc6de3c207eb4582 (diff) |
feat(workstation): add vdf
-rw-r--r-- | nixos/npins/sources.json | 12 | ||||
-rw-r--r-- | nixos/profiles/workstation/default.nix | 1 |
2 files changed, 13 insertions, 0 deletions
diff --git a/nixos/npins/sources.json b/nixos/npins/sources.json index a633926..87cd5cd 100644 --- a/nixos/npins/sources.json +++ b/nixos/npins/sources.json @@ -76,6 +76,18 @@ "url": null, "hash": "1z83lhqzr7yx07qb3icz0pph64aij9a1z17rqxzqmyvjsyyn8nfd" }, + "my-vdf": { + "type": "Git", + "repository": { + "type": "Git", + "url": "https://git.push-f.com/vdf" + }, + "branch": "master", + "submodules": false, + "revision": "ba6b72b4c7e257b9514ce21b7fbbc469e4c8a849", + "url": null, + "hash": "0yrlxfzsi13zngr32zf6ca9fhh3z1lj3960rv2ipp51d09zvgwjq" + }, "nixos": { "type": "Channel", "name": "nixos-25.05", diff --git a/nixos/profiles/workstation/default.nix b/nixos/profiles/workstation/default.nix index 052a3c8..9069530 100644 --- a/nixos/profiles/workstation/default.nix +++ b/nixos/profiles/workstation/default.nix @@ -38,6 +38,7 @@ in environment.systemPackages = with pkgs; [ npins (callPackage "${sources.agenix}/pkgs/agenix.nix" {}) + (callPackage sources.my-vdf {}) vim-full skim |