My Nix Configuration
2
fork

Configure Feed

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

[flake] remove detnix

dish 18b21097 459586fb

-114
-91
flake.lock
··· 138 138 "type": "github" 139 139 } 140 140 }, 141 - "determinate": { 142 - "inputs": { 143 - "determinate-nixd-aarch64-darwin": "determinate-nixd-aarch64-darwin", 144 - "determinate-nixd-aarch64-linux": "determinate-nixd-aarch64-linux", 145 - "determinate-nixd-x86_64-darwin": [ 146 - "determinate", 147 - "determinate-nixd-aarch64-darwin" 148 - ], 149 - "determinate-nixd-x86_64-linux": "determinate-nixd-x86_64-linux", 150 - "nix": [ 151 - "dix" 152 - ], 153 - "nixpkgs": [ 154 - "nixpkgs" 155 - ] 156 - }, 157 - "locked": { 158 - "lastModified": 1761251546, 159 - "narHash": "sha256-I/TDYHCKui0K62f2cEk2UJf6N9rO/hdsa65kpEJMhSo=", 160 - "owner": "DeterminateSystems", 161 - "repo": "determinate", 162 - "rev": "70beec406153496943274f59cb2ded76be49fcd7", 163 - "type": "github" 164 - }, 165 - "original": { 166 - "owner": "DeterminateSystems", 167 - "repo": "determinate", 168 - "type": "github" 169 - } 170 - }, 171 - "determinate-nixd-aarch64-darwin": { 172 - "flake": false, 173 - "locked": { 174 - "narHash": "sha256-TORlljq+wwn8XWLoN0giLY15pNiIAXuU0igpIXjLhMY=", 175 - "type": "file", 176 - "url": "https://install.determinate.systems/determinate-nixd/tag/v3.12.0/macOS" 177 - }, 178 - "original": { 179 - "type": "file", 180 - "url": "https://install.determinate.systems/determinate-nixd/tag/v3.12.0/macOS" 181 - } 182 - }, 183 - "determinate-nixd-aarch64-linux": { 184 - "flake": false, 185 - "locked": { 186 - "narHash": "sha256-1HEvUQcG0mVdEQrEqcLEdB9nHpMNbb39bdNxdvyizqk=", 187 - "type": "file", 188 - "url": "https://install.determinate.systems/determinate-nixd/tag/v3.12.0/aarch64-linux" 189 - }, 190 - "original": { 191 - "type": "file", 192 - "url": "https://install.determinate.systems/determinate-nixd/tag/v3.12.0/aarch64-linux" 193 - } 194 - }, 195 - "determinate-nixd-x86_64-linux": { 196 - "flake": false, 197 - "locked": { 198 - "narHash": "sha256-WrXQbrXVisAdZl/hh49PsErSPHwzks1Vw+O3jarVjDo=", 199 - "type": "file", 200 - "url": "https://install.determinate.systems/determinate-nixd/tag/v3.12.0/x86_64-linux" 201 - }, 202 - "original": { 203 - "type": "file", 204 - "url": "https://install.determinate.systems/determinate-nixd/tag/v3.12.0/x86_64-linux" 205 - } 206 - }, 207 141 "dgop": { 208 142 "inputs": { 209 143 "nixpkgs": [ ··· 223 157 "owner": "AvengeMedia", 224 158 "repo": "dgop", 225 159 "type": "github" 226 - } 227 - }, 228 - "dix": { 229 - "inputs": { 230 - "flake-parts": [], 231 - "git-hooks-nix": [], 232 - "nixpkgs": [ 233 - "nixpkgs" 234 - ], 235 - "nixpkgs-23-11": [], 236 - "nixpkgs-regression": [] 237 - }, 238 - "locked": { 239 - "lastModified": 1761238235, 240 - "narHash": "sha256-BvEZ31+FQKJz2XH8PTXpJqGZ1eT9bhMQ2wBj2ehBYvM=", 241 - "rev": "9512828397f684d0f732ea76b7631f69a0db34f7", 242 - "revCount": 23138, 243 - "type": "tarball", 244 - "url": "https://api.flakehub.com/f/pinned/DeterminateSystems/nix-src/3.12.0/019a1277-d4c6-7dca-9d55-ee5165fd0bf6/source.tar.gz" 245 - }, 246 - "original": { 247 - "type": "tarball", 248 - "url": "https://flakehub.com/f/DeterminateSystems/nix-src/%2A" 249 160 } 250 161 }, 251 162 "dms": { ··· 804 715 "buildbot-nix": "buildbot-nix", 805 716 "caelestia": "caelestia", 806 717 "ctp": "ctp", 807 - "determinate": "determinate", 808 - "dix": "dix", 809 718 "dms": "dms", 810 719 "dms-plugins": "dms-plugins", 811 720 "dms-power-usage": "dms-power-usage",
-20
flake.nix
··· 5 5 extra-substituters = [ 6 6 "https://cache.nixos.org" 7 7 "https://nix-community.cachix.org" 8 - "https://install.determinate.systems" 9 8 ]; 10 9 trusted-public-keys = [ 11 10 "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" 12 11 "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" 13 - "cache.flakehub.com-3:hJuILl5sVK4iKm86JzgdXW12Y2Hwd5G07qKtHTOcDCM=" 14 12 ]; 15 13 cores = 0; 16 14 max-jobs = 2; ··· 51 49 }; 52 50 ctp = { 53 51 url = "github:catppuccin/nix"; 54 - }; 55 - dix = { 56 - url = "https://flakehub.com/f/DeterminateSystems/nix-src/*"; 57 - inputs = { 58 - nixpkgs.follows = "nixpkgs"; 59 - nixpkgs-regression.follows = ""; 60 - nixpkgs-23-11.follows = ""; 61 - 62 - flake-parts.follows = ""; 63 - git-hooks-nix.follows = ""; 64 - }; 65 - }; 66 - determinate = { 67 - url = "github:DeterminateSystems/determinate"; 68 - inputs = { 69 - nixpkgs.follows = "nixpkgs"; 70 - nix.follows = "dix"; 71 - }; 72 52 }; 73 53 dms = { 74 54 url = "github:AvengeMedia/DankMaterialShell";
-1
hosts/default.nix
··· 5 5 modules = [ 6 6 inputs.agenix.nixosModules.default 7 7 inputs.ctp.nixosModules.catppuccin 8 - inputs.determinate.nixosModules.default 9 8 inputs.home-manager.nixosModules.home-manager 10 9 inputs.self.nixosModules.chromium 11 10 inputs.self.nixosModules.defaultConfig
-2
nixosModules/default-config/nixConfig.nix
··· 72 72 trusted-public-keys = [ 73 73 "cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=" 74 74 "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" 75 - "cache.flakehub.com-3:hJuILl5sVK4iKm86JzgdXW12Y2Hwd5G07qKtHTOcDCM=" 76 75 ]; 77 76 # Extra substituters 78 77 trusted-substituters = [ 79 78 "https://cache.nixos.org" 80 79 "https://nix-community.cachix.org" 81 - "https://install.determinate.systems" 82 80 ]; 83 81 # These users have additional daemon rights 84 82 trusted-users = userList;