this repo has no description
2
fork

Configure Feed

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

opencode?

+30 -20
+20 -18
flake.lock
··· 43 43 "inputs": { 44 44 "devenv": "devenv", 45 45 "fenix": "fenix", 46 - "flake-parts": "flake-parts", 46 + "flake-parts": [ 47 + "flake-parts" 48 + ], 47 49 "flake-root": "flake-root", 48 50 "mk-shell-bin": "mk-shell-bin", 49 51 "nix2container": "nix2container", ··· 356 358 "nixpkgs-lib": "nixpkgs-lib" 357 359 }, 358 360 "locked": { 359 - "lastModified": 1698882062, 360 - "narHash": "sha256-HkhafUayIqxXyHH1X8d9RDl1M2CkFgZLjKD3MzabiEo=", 361 - "path": "/nix/store/vf5ra8smwlqy3pi0300s580g5msc3xp7-source", 362 - "rev": "8c9fa2545007b49a5db5f650ae91f227672c3877", 363 - "type": "path" 361 + "lastModified": 1772408722, 362 + "narHash": "sha256-rHuJtdcOjK7rAHpHphUb1iCvgkU3GpfvicLMwwnfMT0=", 363 + "owner": "hercules-ci", 364 + "repo": "flake-parts", 365 + "rev": "f20dc5d9b8027381c474144ecabc9034d6a839a3", 366 + "type": "github" 364 367 }, 365 368 "original": { 366 - "id": "flake-parts", 367 - "type": "indirect" 369 + "owner": "hercules-ci", 370 + "repo": "flake-parts", 371 + "type": "github" 368 372 } 369 373 }, 370 374 "flake-parts_2": { ··· 967 971 }, 968 972 "nixpkgs-lib": { 969 973 "locked": { 970 - "dir": "lib", 971 - "lastModified": 1698611440, 972 - "narHash": "sha256-jPjHjrerhYDy3q9+s5EAsuhyhuknNfowY6yt6pjn9pc=", 973 - "owner": "NixOS", 974 - "repo": "nixpkgs", 975 - "rev": "0cbe9f69c234a7700596e943bfae7ef27a31b735", 974 + "lastModified": 1772328832, 975 + "narHash": "sha256-e+/T/pmEkLP6BHhYjx6GmwP5ivonQQn0bJdH9YrRB+Q=", 976 + "owner": "nix-community", 977 + "repo": "nixpkgs.lib", 978 + "rev": "c185c7a5e5dd8f9add5b2f8ebeff00888b070742", 976 979 "type": "github" 977 980 }, 978 981 "original": { 979 - "dir": "lib", 980 - "owner": "NixOS", 981 - "ref": "nixos-unstable", 982 - "repo": "nixpkgs", 982 + "owner": "nix-community", 983 + "repo": "nixpkgs.lib", 983 984 "type": "github" 984 985 } 985 986 }, ··· 1173 1174 "darwin": "darwin_2", 1174 1175 "deploy-rs": "deploy-rs", 1175 1176 "disko": "disko", 1177 + "flake-parts": "flake-parts", 1176 1178 "grasp": "grasp", 1177 1179 "hardware": "hardware", 1178 1180 "home-manager": "home-manager_2",
+9 -1
flake.nix
··· 85 85 }; 86 86 tidalcycles.url = "github:mitchmindtree/tidalcycles.nix"; 87 87 tidalcycles.inputs.nixpkgs.follows = "unstable"; 88 + flake-parts.url = "github:hercules-ci/flake-parts"; 88 89 autohide-tdrop = { 89 90 url = "github:I-Want-ToBelieve/autohide-tdrop"; 90 91 inputs.nixpkgs.follows = "nixpkgs"; 92 + inputs.flake-parts.follows = "flake-parts"; 91 93 }; 92 94 # TODO hundred rabbits software 93 95 # TODO needs secrets ··· 156 158 pkg: 157 159 builtins.elem (nixpkgs.lib.getName pkg) [ 158 160 "ripcord" 161 + "obsidian" 159 162 "vcv-rack" 160 163 "SunVox" 161 164 "renoise" ··· 271 274 system: 272 275 let 273 276 pkgs = nixpkgsFor.${system}; 277 + allPkgs = import ./pkgs { pkgs = pkgs; }; 274 278 in 275 - import ./pkgs { pkgs = pkgs; } 279 + # Filter out non-derivation attributes (e.g. obsidianPlugins is an attrset) 280 + nixpkgs.lib.filterAttrs (_: v: nixpkgs.lib.isDerivation v) allPkgs 276 281 ); 277 282 # Devshell for bootstrapping 278 283 # Acessible through 'nix develop' or 'nix-shell' (legacy) ··· 313 318 home-manager.useGlobalPkgs = true; 314 319 home-manager.useUserPackages = true; 315 320 home-manager.extraSpecialArgs = { inherit inputs; }; 321 + home-manager.backupFileExtension = "hm-bak"; 316 322 home-manager.users.anish = import ./home/gui; 317 323 } 318 324 ]; ··· 352 358 { 353 359 home-manager.useGlobalPkgs = true; 354 360 home-manager.useUserPackages = true; 361 + home-manager.backupFileExtension = "hm-bak"; 355 362 home-manager.users.anish = import ./home/core; 356 363 } 357 364 ]; ··· 378 385 home-manager.useGlobalPkgs = true; 379 386 home-manager.useUserPackages = true; 380 387 home-manager.extraSpecialArgs = { inherit inputs; }; 388 + home-manager.backupFileExtension = "hm-bak"; 381 389 home-manager.users.anish = import ./home/dev; 382 390 } 383 391 ];
+1 -1
home/profiles/cli/default.nix
··· 29 29 skim 30 30 tealdeer 31 31 usbutils 32 - utillinux 32 + util-linux 33 33 whois 34 34 iftop 35 35 wget