yep, more dotfiles

add nix-alien

wiro.world 02af7e7e 965d8238

verified
+65 -1
+60 -1
flake.lock
··· 199 199 } 200 200 }, 201 201 "flake-compat_2": { 202 + "locked": { 203 + "lastModified": 1761588595, 204 + "narHash": "sha256-XKUZz9zewJNUj46b4AJdiRZJAvSZ0Dqj2BNfXvFlJC4=", 205 + "owner": "edolstra", 206 + "repo": "flake-compat", 207 + "rev": "f387cd2afec9419c8ee37694406ca490c3f34ee5", 208 + "type": "github" 209 + }, 210 + "original": { 211 + "owner": "edolstra", 212 + "repo": "flake-compat", 213 + "type": "github" 214 + } 215 + }, 216 + "flake-compat_3": { 202 217 "flake": false, 203 218 "locked": { 204 219 "lastModified": 1751685974, ··· 560 575 "url": "https://github.com/lucide-icons/lucide/releases/download/0.536.0/lucide-icons-0.536.0.zip" 561 576 } 562 577 }, 578 + "nix-alien": { 579 + "inputs": { 580 + "flake-compat": "flake-compat_2", 581 + "nix-index-database": "nix-index-database", 582 + "nixpkgs": [ 583 + "nixpkgs" 584 + ] 585 + }, 586 + "locked": { 587 + "lastModified": 1764061716, 588 + "narHash": "sha256-xKnIoMPv2kIsWhjRhJayqMWU2xkjeq2pyPmR1dLFPHs=", 589 + "owner": "thiagokokada", 590 + "repo": "nix-alien", 591 + "rev": "9bc9c1ab671eb1b610f549e15bc0b750ab987409", 592 + "type": "github" 593 + }, 594 + "original": { 595 + "owner": "thiagokokada", 596 + "repo": "nix-alien", 597 + "type": "github" 598 + } 599 + }, 563 600 "nix-darwin": { 564 601 "inputs": { 565 602 "nixpkgs": [ ··· 578 615 "owner": "nix-darwin", 579 616 "ref": "nix-darwin-25.11", 580 617 "repo": "nix-darwin", 618 + "type": "github" 619 + } 620 + }, 621 + "nix-index-database": { 622 + "inputs": { 623 + "nixpkgs": [ 624 + "nix-alien", 625 + "nixpkgs" 626 + ] 627 + }, 628 + "locked": { 629 + "lastModified": 1762660502, 630 + "narHash": "sha256-C9F1C31ys0V7mnp4EcDy7L1cLZw/sCTEXqqTtGnvu08=", 631 + "owner": "nix-community", 632 + "repo": "nix-index-database", 633 + "rev": "15c5451c63f4c612874a43846bfe3fa828b03eee", 634 + "type": "github" 635 + }, 636 + "original": { 637 + "owner": "nix-community", 638 + "repo": "nix-index-database", 581 639 "type": "github" 582 640 } 583 641 }, ··· 668 726 "home-manager": "home-manager", 669 727 "hypixel-bank-tracker": "hypixel-bank-tracker", 670 728 "lanzaboote": "lanzaboote", 729 + "nix-alien": "nix-alien", 671 730 "nix-darwin": "nix-darwin", 672 731 "nixos-hardware": "nixos-hardware", 673 732 "nixpkgs": "nixpkgs", ··· 879 938 "tangled": { 880 939 "inputs": { 881 940 "actor-typeahead-src": "actor-typeahead-src", 882 - "flake-compat": "flake-compat_2", 941 + "flake-compat": "flake-compat_3", 883 942 "gomod2nix": "gomod2nix", 884 943 "htmx-src": "htmx-src", 885 944 "htmx-ws-src": "htmx-ws-src",
+3
flake.nix
··· 39 39 hypixel-bank-tracker.url = "github:pixilie/hypixel-bank-tracker"; 40 40 hypixel-bank-tracker.inputs.nixpkgs.follows = "nixpkgs"; 41 41 42 + nix-alien.url = "github:thiagokokada/nix-alien"; 43 + nix-alien.inputs.nixpkgs.follows = "nixpkgs"; 44 + 42 45 tangled.url = "git+https://tangled.org/tangled.org/core"; 43 46 tangled.inputs.nixpkgs.follows = "unixpkgs"; 44 47
+2
pkgs/default.nix
··· 11 11 inherit (self.inputs) 12 12 agenix 13 13 git-leave 14 + nix-alien 14 15 wakatime-ls 15 16 ; 16 17 in ··· 24 25 # Import packages defined in foreign repositories 25 26 inherit (agenix.packages.${system}) agenix; 26 27 inherit (git-leave.packages.${system}) git-leave; 28 + inherit (nix-alien.packages.${system}) nix-alien; 27 29 inherit (wakatime-ls.packages.${system}) wakatime-ls; 28 30 }