File tree Expand file tree Collapse file tree 3 files changed +22
-13
lines changed Expand file tree Collapse file tree 3 files changed +22
-13
lines changed Original file line number Diff line number Diff line change 20
20
github-nix-ci . url = "github:juspay/github-nix-ci" ;
21
21
nixos-vscode-server . flake = false ;
22
22
nixos-vscode-server . url = "github:nix-community/nixos-vscode-server" ;
23
- nix-index-database . url = "github:nix-community/nix-index-database" ;
24
- nix-index-database . inputs . nixpkgs . follows = "nixpkgs" ;
23
+
24
+ # Fork with flake support https://github.com/gvolpe/ nix-index/pull/1
25
25
nix-index = {
26
- # Fork with flake support https://github.com/gvolpe/nix-index/pull/1
27
26
url = "github:gvolpe/nix-index" ;
27
+ inputs . nix-index-database . follows = "nix-index-database" ;
28
+ inputs . nixpkgs . follows = "nixpkgs" ;
29
+ } ;
30
+ nix-index-database = {
31
+ url = "github:gvolpe/nix-index-database" ;
28
32
inputs . nixpkgs . follows = "nixpkgs" ;
29
33
} ;
34
+
30
35
actualism-app . url = "github:srid/actualism-app" ;
31
36
omnix . url = "github:juspay/omnix" ;
32
37
hyprland . url = "github:hyprwm/Hyprland/v0.45.2" ;
Original file line number Diff line number Diff line change 1
1
# Platform-independent terminal setup
2
- { flake , ... } :
2
+ { flake , pkgs , ... } :
3
3
4
4
let
5
5
inherit ( flake ) inputs ;
15
15
enable = true ;
16
16
enableZshIntegration = true ;
17
17
enableNixCommand = true ;
18
+ database = inputs . nix-index-database . packages . ${ pkgs . system } . nix-index-small-database ;
18
19
} ;
19
- nix-index-database . comma . enable = true ;
20
+ # nix-index-database.comma.enable = true;
20
21
} ;
21
22
}
You can’t perform that action at this time.
0 commit comments