diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-04-22 17:03:17 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2026-04-22 17:03:17 +0200 |
| commit | 8ea1da9041988332e24d55dc0972187404ce8e62 (patch) | |
| tree | 6b49d5de109f1ad901f9cec51aad932e97ac3190 | |
| parent | a277e2b64027d08aafc0899bdc580a7830e4cdef (diff) | |
2026-04-22 updates by auto-switch
| -rw-r--r-- | common/default.nix | 2 | ||||
| -rw-r--r-- | common/services/tor.nix | 1 | ||||
| -rw-r--r-- | flake.lock | 27 | ||||
| -rw-r--r-- | flake.nix | 4 |
4 files changed, 31 insertions, 3 deletions
diff --git a/common/default.nix b/common/default.nix index b4366c2..d61b66c 100644 --- a/common/default.nix +++ b/common/default.nix @@ -6,6 +6,7 @@ nixvim, webtray, wofi-pass, + blueprint, ... }: { @@ -13,6 +14,7 @@ home-manager.nixosModules.default webtray.nixosModules.default wofi-pass.nixosModules.default + blueprint.nixosModules.default ]; fonts.packages = with pkgs; [ nerd-fonts.sauce-code-pro ]; diff --git a/common/services/tor.nix b/common/services/tor.nix index a8321f2..8b41fed 100644 --- a/common/services/tor.nix +++ b/common/services/tor.nix @@ -1,4 +1,5 @@ { ... }: { enable = true; + client.enable = true; } @@ -1,5 +1,25 @@ { "nodes": { + "blueprint": { + "inputs": { + "nixpkgs": [ + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1776706228, + "narHash": "sha256-yQ805jCjHYi58MywtmYwlSBHLIGCmRBpj6Vvp8ksKpk=", + "ref": "refs/heads/master", + "rev": "e371c801fed71bb73bc7c027e3de5ad2a6116673", + "revCount": 10, + "type": "git", + "url": "https://git.nathanreiner.xyz/blueprint" + }, + "original": { + "type": "git", + "url": "https://git.nathanreiner.xyz/blueprint" + } + }, "flake-parts": { "inputs": { "nixpkgs-lib": [ @@ -90,11 +110,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1776067740, - "narHash": "sha256-B35lpsqnSZwn1Lmz06BpwF7atPgFmUgw1l8KAV3zpVQ=", + "lastModified": 1776434932, + "narHash": "sha256-gyqXNMgk3sh+ogY5svd2eNLJ6oEwzbAeaoBrrxD0lKk=", "owner": "nixos", "repo": "nixpkgs", - "rev": "7e495b747b51f95ae15e74377c5ce1fe69c1765f", + "rev": "c7f47036d3df2add644c46d712d14262b7d86c0c", "type": "github" }, "original": { @@ -169,6 +189,7 @@ }, "root": { "inputs": { + "blueprint": "blueprint", "home-manager": "home-manager", "nixpkgs": "nixpkgs", "nixpkgs-unstable": "nixpkgs-unstable", @@ -20,6 +20,10 @@ url = "git+https://git.nathanreiner.xyz/wofi-pass"; inputs.nixpkgs.follows = "nixpkgs"; }; + blueprint = { + url = "git+https://git.nathanreiner.xyz/blueprint"; + inputs.nixpkgs.follows = "nixpkgs"; + }; }; outputs = |