my nixos config
0
fork

Configure Feed

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

remove references to the website3 flake

chfour 6ab67aac ab7337c1

+2 -73
+1 -67
flake.lock
··· 18 18 "type": "github" 19 19 } 20 20 }, 21 - "flake-utils_2": { 22 - "inputs": { 23 - "systems": "systems_2" 24 - }, 25 - "locked": { 26 - "lastModified": 1731533236, 27 - "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=", 28 - "owner": "numtide", 29 - "repo": "flake-utils", 30 - "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b", 31 - "type": "github" 32 - }, 33 - "original": { 34 - "owner": "numtide", 35 - "repo": "flake-utils", 36 - "type": "github" 37 - } 38 - }, 39 21 "flakey-profile": { 40 22 "locked": { 41 23 "lastModified": 1712898590, ··· 154 136 "type": "github" 155 137 } 156 138 }, 157 - "nixpkgs_2": { 158 - "locked": { 159 - "lastModified": 0, 160 - "narHash": "sha256-wNO3+Ks2jZJ4nTHMuks+cxAiVBGNuEBXsT29Bz6HASo=", 161 - "path": "/nix/store/75d0qr8zvhv921ili0y2fqxa5drk9xpi-source", 162 - "type": "path" 163 - }, 164 - "original": { 165 - "id": "nixpkgs", 166 - "type": "indirect" 167 - } 168 - }, 169 139 "root": { 170 140 "inputs": { 171 141 "home-manager": "home-manager", 172 142 "lix-module": "lix-module", 173 143 "nixos-hardware": "nixos-hardware", 174 144 "nixpkgs": "nixpkgs", 175 - "nixpkgs-master": "nixpkgs-master", 176 - "website": "website" 145 + "nixpkgs-master": "nixpkgs-master" 177 146 } 178 147 }, 179 148 "systems": { ··· 188 157 "original": { 189 158 "owner": "nix-systems", 190 159 "repo": "default", 191 - "type": "github" 192 - } 193 - }, 194 - "systems_2": { 195 - "locked": { 196 - "lastModified": 1681028828, 197 - "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", 198 - "owner": "nix-systems", 199 - "repo": "default", 200 - "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", 201 - "type": "github" 202 - }, 203 - "original": { 204 - "owner": "nix-systems", 205 - "repo": "default", 206 - "type": "github" 207 - } 208 - }, 209 - "website": { 210 - "inputs": { 211 - "flake-utils": "flake-utils_2", 212 - "nixpkgs": "nixpkgs_2" 213 - }, 214 - "locked": { 215 - "lastModified": 1758052941, 216 - "narHash": "sha256-4+8ravRpvZPaU7j/qexbP4sAy8rzkiBYGncJwpcfrl4=", 217 - "owner": "chfour", 218 - "repo": "website3", 219 - "rev": "f3f872dbaa44519c56f2a929055428d8b75bc0b6", 220 - "type": "github" 221 - }, 222 - "original": { 223 - "owner": "chfour", 224 - "ref": "main", 225 - "repo": "website3", 226 160 "type": "github" 227 161 } 228 162 }
+1 -6
flake.nix
··· 15 15 url = "github:nix-community/home-manager"; 16 16 inputs.nixpkgs.follows = "nixpkgs"; 17 17 }; 18 - 19 - website.url = "github:chfour/website3/main"; 20 18 }; 21 19 22 - outputs = { self, nixpkgs, nixpkgs-master, lix-module, nixos-hardware, home-manager, website, ... }: { 20 + outputs = { self, nixpkgs, nixpkgs-master, lix-module, nixos-hardware, home-manager, ... }: { 23 21 nixosModules = { 24 22 declarativeHome = { ... }: { 25 23 imports = [ home-manager.nixosModules.home-manager ]; ··· 55 53 }; 56 54 "fovps" = nixpkgs.lib.nixosSystem rec { 57 55 system = "x86_64-linux"; 58 - specialArgs = { 59 - website = website.packages.${system}; 60 - }; 61 56 modules = with self.nixosModules; [ 62 57 defaults 63 58 ./machines/fovps