tangled
alpha
login
or
join now
wiro.world
/
dotfiles
2
fork
atom
yep, more dotfiles
2
fork
atom
overview
issues
1
pulls
1
pipelines
add nix-alien
wiro.world
3 months ago
02af7e7e
965d8238
verified
This commit was signed with the committer's
known signature
.
wiro.world
SSH Key Fingerprint:
SHA256:SmMcWpNAnL+VAgItSawvXgdPVn7f1rsyAuB/5VNclKY=
+65
-1
3 changed files
expand all
collapse all
unified
split
flake.lock
flake.nix
pkgs
default.nix
+60
-1
flake.lock
reviewed
···
199
199
}
200
200
},
201
201
"flake-compat_2": {
202
202
+
"locked": {
203
203
+
"lastModified": 1761588595,
204
204
+
"narHash": "sha256-XKUZz9zewJNUj46b4AJdiRZJAvSZ0Dqj2BNfXvFlJC4=",
205
205
+
"owner": "edolstra",
206
206
+
"repo": "flake-compat",
207
207
+
"rev": "f387cd2afec9419c8ee37694406ca490c3f34ee5",
208
208
+
"type": "github"
209
209
+
},
210
210
+
"original": {
211
211
+
"owner": "edolstra",
212
212
+
"repo": "flake-compat",
213
213
+
"type": "github"
214
214
+
}
215
215
+
},
216
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
578
+
"nix-alien": {
579
579
+
"inputs": {
580
580
+
"flake-compat": "flake-compat_2",
581
581
+
"nix-index-database": "nix-index-database",
582
582
+
"nixpkgs": [
583
583
+
"nixpkgs"
584
584
+
]
585
585
+
},
586
586
+
"locked": {
587
587
+
"lastModified": 1764061716,
588
588
+
"narHash": "sha256-xKnIoMPv2kIsWhjRhJayqMWU2xkjeq2pyPmR1dLFPHs=",
589
589
+
"owner": "thiagokokada",
590
590
+
"repo": "nix-alien",
591
591
+
"rev": "9bc9c1ab671eb1b610f549e15bc0b750ab987409",
592
592
+
"type": "github"
593
593
+
},
594
594
+
"original": {
595
595
+
"owner": "thiagokokada",
596
596
+
"repo": "nix-alien",
597
597
+
"type": "github"
598
598
+
}
599
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
618
+
"type": "github"
619
619
+
}
620
620
+
},
621
621
+
"nix-index-database": {
622
622
+
"inputs": {
623
623
+
"nixpkgs": [
624
624
+
"nix-alien",
625
625
+
"nixpkgs"
626
626
+
]
627
627
+
},
628
628
+
"locked": {
629
629
+
"lastModified": 1762660502,
630
630
+
"narHash": "sha256-C9F1C31ys0V7mnp4EcDy7L1cLZw/sCTEXqqTtGnvu08=",
631
631
+
"owner": "nix-community",
632
632
+
"repo": "nix-index-database",
633
633
+
"rev": "15c5451c63f4c612874a43846bfe3fa828b03eee",
634
634
+
"type": "github"
635
635
+
},
636
636
+
"original": {
637
637
+
"owner": "nix-community",
638
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
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
882
-
"flake-compat": "flake-compat_2",
941
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
reviewed
···
39
39
hypixel-bank-tracker.url = "github:pixilie/hypixel-bank-tracker";
40
40
hypixel-bank-tracker.inputs.nixpkgs.follows = "nixpkgs";
41
41
42
42
+
nix-alien.url = "github:thiagokokada/nix-alien";
43
43
+
nix-alien.inputs.nixpkgs.follows = "nixpkgs";
44
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
reviewed
···
11
11
inherit (self.inputs)
12
12
agenix
13
13
git-leave
14
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
28
+
inherit (nix-alien.packages.${system}) nix-alien;
27
29
inherit (wakatime-ls.packages.${system}) wakatime-ls;
28
30
}