yep, more dotfiles

Revert "chore: use unixpkgs#helix instead of upstream"

This partially reverts commit f18818c5f5526516b2e2509d68e07b0073f213f2.

wiro.world 7005b140 e9c2b0cf

verified
+54 -6
+48 -5
flake.lock
··· 496 496 "type": "github" 497 497 } 498 498 }, 499 + "helix": { 500 + "inputs": { 501 + "nixpkgs": [ 502 + "unixpkgs" 503 + ], 504 + "rust-overlay": "rust-overlay_2" 505 + }, 506 + "locked": { 507 + "lastModified": 1771429468, 508 + "narHash": "sha256-blgdyxA7Ih6jwrp12uSfOylelRHrs9FgP8Mh5GBKG6E=", 509 + "owner": "helix-editor", 510 + "repo": "helix", 511 + "rev": "1a38979aaa53ea96425a04413c871600ee5845e7", 512 + "type": "github" 513 + }, 514 + "original": { 515 + "owner": "helix-editor", 516 + "repo": "helix", 517 + "type": "github" 518 + } 519 + }, 499 520 "home-manager": { 500 521 "inputs": { 501 522 "nixpkgs": [ ··· 547 568 "nixpkgs": [ 548 569 "nixpkgs" 549 570 ], 550 - "rust-overlay": "rust-overlay_2" 571 + "rust-overlay": "rust-overlay_3" 551 572 }, 552 573 "locked": { 553 574 "lastModified": 1764455123, ··· 612 633 "unixpkgs" 613 634 ], 614 635 "pre-commit": "pre-commit", 615 - "rust-overlay": "rust-overlay_3" 636 + "rust-overlay": "rust-overlay_4" 616 637 }, 617 638 "locked": { 618 639 "lastModified": 1765382359, ··· 805 826 "disko": "disko", 806 827 "git-leave": "git-leave", 807 828 "git-pages": "git-pages", 829 + "helix": "helix", 808 830 "home-manager": "home-manager", 809 831 "hypixel-bank-tracker": "hypixel-bank-tracker", 810 832 "lanzaboote": "lanzaboote", ··· 844 866 "rust-overlay_2": { 845 867 "inputs": { 846 868 "nixpkgs": [ 869 + "helix", 870 + "nixpkgs" 871 + ] 872 + }, 873 + "locked": { 874 + "lastModified": 1759631821, 875 + "narHash": "sha256-V8A1L0FaU/aSXZ1QNJScxC12uP4hANeRBgI4YdhHeRM=", 876 + "owner": "oxalica", 877 + "repo": "rust-overlay", 878 + "rev": "1d7cbdaad90f8a5255a89a6eddd8af24dc89cafe", 879 + "type": "github" 880 + }, 881 + "original": { 882 + "owner": "oxalica", 883 + "repo": "rust-overlay", 884 + "type": "github" 885 + } 886 + }, 887 + "rust-overlay_3": { 888 + "inputs": { 889 + "nixpkgs": [ 847 890 "hypixel-bank-tracker", 848 891 "nixpkgs" 849 892 ] ··· 862 905 "type": "github" 863 906 } 864 907 }, 865 - "rust-overlay_3": { 908 + "rust-overlay_4": { 866 909 "inputs": { 867 910 "nixpkgs": [ 868 911 "lanzaboote", ··· 883 926 "type": "github" 884 927 } 885 928 }, 886 - "rust-overlay_4": { 929 + "rust-overlay_5": { 887 930 "inputs": { 888 931 "nixpkgs": [ 889 932 "wakatime-ls", ··· 1165 1208 "nixpkgs": [ 1166 1209 "nixpkgs" 1167 1210 ], 1168 - "rust-overlay": "rust-overlay_4" 1211 + "rust-overlay": "rust-overlay_5" 1169 1212 }, 1170 1213 "locked": { 1171 1214 "lastModified": 1770482328,
+3
flake.nix
··· 39 39 git-pages.url = "git+https://codeberg.org/git-pages/git-pages"; 40 40 git-pages.inputs.nixpkgs.follows = "nixpkgs"; 41 41 42 + helix.url = "github:helix-editor/helix"; 43 + helix.inputs.nixpkgs.follows = "unixpkgs"; 44 + 42 45 hypixel-bank-tracker.url = "github:pixilie/hypixel-bank-tracker"; 43 46 hypixel-bank-tracker.inputs.nixpkgs.follows = "nixpkgs"; 44 47
+1 -1
home-manager/fragments/helix.nix
··· 37 37 38 38 programs.helix = { 39 39 enable = true; 40 - package = upkgs.helix; 40 + package = if flags.onlyCached then upkgs.helix else lpkgs.helix; 41 41 defaultEditor = true; 42 42 43 43 settings = {
+2
pkgs/default.nix
··· 13 13 agenix 14 14 git-leave 15 15 git-pages 16 + helix 16 17 nix-alien 17 18 wakatime-ls 18 19 ; ··· 29 30 inherit (agenix.packages.${system}) agenix; 30 31 inherit (git-leave.packages.${system}) git-leave; 31 32 inherit (git-pages.packages.${system}) git-pages; 33 + inherit (helix.packages.${system}) helix; 32 34 inherit (nix-alien.packages.${system}) nix-alien; 33 35 inherit (wakatime-ls.packages.${system}) wakatime-ls; 34 36 }