my nixos config
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

different placeholder for the website + own nixpkgs

chfour aba2fe00 09a6c57e

+20 -11
+16 -6
flake.lock
··· 86 86 "type": "github" 87 87 } 88 88 }, 89 + "nixpkgs_2": { 90 + "locked": { 91 + "lastModified": 0, 92 + "narHash": "sha256-Xb8mke6UCYjge9kPR9o4P1nVrhk7QBbKv3xQ9cj7h2s=", 93 + "path": "/nix/store/cginla74w7h4gln9b3mva6l4nmj6gj30-source", 94 + "type": "path" 95 + }, 96 + "original": { 97 + "id": "nixpkgs", 98 + "type": "indirect" 99 + } 100 + }, 89 101 "root": { 90 102 "inputs": { 91 103 "home-manager": "home-manager", ··· 113 125 "website": { 114 126 "inputs": { 115 127 "flake-utils": "flake-utils", 116 - "nixpkgs": [ 117 - "nixpkgs" 118 - ] 128 + "nixpkgs": "nixpkgs_2" 119 129 }, 120 130 "locked": { 121 - "lastModified": 1738362652, 122 - "narHash": "sha256-jk0Pos+dukDVbUJdmYMLvvAxDmBWNs5ojICAZlBguQc=", 131 + "lastModified": 1738419495, 132 + "narHash": "sha256-lFnswORjHHEJHKnIaJnlNQWxTYnd22gUIRNsEkHh0o8=", 123 133 "owner": "chfour", 124 134 "repo": "website3", 125 - "rev": "16fb2420dfcd269cc5b0639731bb5505dbfbcfd4", 135 + "rev": "9507047349e9ed4ad48e8a3b59614f97e2004139", 126 136 "type": "github" 127 137 }, 128 138 "original": {
+1 -4
flake.nix
··· 11 11 inputs.nixpkgs.follows = "nixpkgs"; 12 12 }; 13 13 14 - website = { 15 - url = "github:chfour/website3/main"; 16 - inputs.nixpkgs.follows = "nixpkgs"; 17 - }; 14 + website.url = "github:chfour/website3/main"; 18 15 }; 19 16 20 17 outputs = { self, nixpkgs, nixpkgs-master, nixos-hardware, home-manager, website, ... }: {
+3 -1
machines/fovps/services/caddy/default.nix
··· 55 55 <(find . -mindepth 1 -printf '%P\0' | sort -z) \ 56 56 | xargs -0 rm -rf; popd 57 57 # :trol: 58 - ${pkgs.lib.getExe pkgs.gnused} -i 's|{{placeholder "http.vars.websitePath"}}|${websitePath}|' ${websiteDest}/index.html 58 + ${pkgs.lib.getExe pkgs.gnused} -i \ 59 + 's|/nix/store/VERY5p3c14lsecretv4luereplaceme0-chfour-website|${websitePath}|' \ 60 + ${websiteDest}/index.html 59 61 ''; 60 62 deps = []; 61 63 };