File tree Expand file tree Collapse file tree 3 files changed +24
-4
lines changed
Expand file tree Collapse file tree 3 files changed +24
-4
lines changed Original file line number Diff line number Diff line change 11{
2- inputs . devshell . url = "github:numtide/devshell" ;
2+
3+ inputs . nixpkgs . url = "github:cachix/devenv-nixpkgs/rolling" ;
34 inputs . systems . url = "github:nix-systems/default" ;
45
6+ inputs . devshell . url = "github:numtide/devshell" ;
7+ inputs . devshell . inputs . nixpkgs . follows = "nixpkgs" ;
8+
59 inputs . source . url = "path:./source" ;
610 inputs . source . flake = false ;
711
Original file line number Diff line number Diff line change 1- [inputs .something ]
2- url = " path:./something"
1+ # Custom nixpkgs distribution
2+ [inputs .nixpkgs ]
3+ url = " github:nixos/nixpkgs?ref=release-24.11"
4+ [inputs .devshell ]
5+ url = " github:numtide/devshell"
6+ inputs.nixpkgs.follows = " nixpkgs"
7+
8+ # Custom exposed systems
9+ [inputs .systems ]
10+ url = " path:./systems.nix"
11+ flake = false
312
13+ # non-flake dependency read by bat.nix
414[inputs .file ]
515url = " path:./file"
616flake = false
717
18+ # example flake exposing two overlays
19+ [inputs .something ]
20+ url = " path:./something"
21+
22+ # load overlays
823[[overlays ]]
924something = " foo"
1025[[overlays ]]
1126something = " moo"
1227
1328[nix-config ]
14- allowUnfree = true
29+ allowUnfree = true # because we want hello-unfree
Original file line number Diff line number Diff line change 1+ [ "x86_64-linux" ]
You can’t perform that action at this time.
0 commit comments