add nix-fast-build
This commit is contained in:
parent
de5d8f08b8
commit
3871bf7c25
@ -51,6 +51,10 @@
|
|||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
nix-direnv.url = "github:nix-community/nix-direnv";
|
nix-direnv.url = "github:nix-community/nix-direnv";
|
||||||
|
nix-fast-build = {
|
||||||
|
url = "github:Mic92/nix-fast-build";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
nix-vscode-marketplace = {
|
nix-vscode-marketplace = {
|
||||||
url = "github:nix-community/nix-vscode-extensions";
|
url = "github:nix-community/nix-vscode-extensions";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
@ -123,6 +123,7 @@
|
|||||||
pkgs.radeontop
|
pkgs.radeontop
|
||||||
pkgs.wayvnc
|
pkgs.wayvnc
|
||||||
pkgs.distrobox
|
pkgs.distrobox
|
||||||
|
pkgs.nix-fast-build
|
||||||
];
|
];
|
||||||
xdg.configFile."distrobox/distrobox.conf".text = ''
|
xdg.configFile."distrobox/distrobox.conf".text = ''
|
||||||
container_always_pull="1"
|
container_always_pull="1"
|
||||||
|
@ -28,6 +28,7 @@ with lib; {
|
|||||||
cassowary-py = inputs.cassowary.packages.${system}.cassowary;
|
cassowary-py = inputs.cassowary.packages.${system}.cassowary;
|
||||||
devenv = inputs.devenv.packages.${system}.devenv;
|
devenv = inputs.devenv.packages.${system}.devenv;
|
||||||
nix-alien = inputs.nix-alien.packages.${system}.nix-alien;
|
nix-alien = inputs.nix-alien.packages.${system}.nix-alien;
|
||||||
|
nix-fast-build = inputs.nix-fast-build.packages.${system}.default;
|
||||||
nix-index-update = inputs.nix-alien.packages.${system}.nix-index-update;
|
nix-index-update = inputs.nix-alien.packages.${system}.nix-index-update;
|
||||||
prismlauncher = inputs.prismlauncher.packages.${system}.default;
|
prismlauncher = inputs.prismlauncher.packages.${system}.default;
|
||||||
ripgrep-all = stable.ripgrep-all;
|
ripgrep-all = stable.ripgrep-all;
|
||||||
|
@ -70,6 +70,8 @@
|
|||||||
"nsp" = "nix-shell --run zsh -p";
|
"nsp" = "nix-shell --run zsh -p";
|
||||||
"nd" = "nix develop -c zsh";
|
"nd" = "nix develop -c zsh";
|
||||||
"nb" = "nix build";
|
"nb" = "nix build";
|
||||||
|
"nbf" = "nix-fast-build --flake";
|
||||||
|
"nbfc" = "nix-fast-build --skip-cached --flake";
|
||||||
"nr" = "nix run";
|
"nr" = "nix run";
|
||||||
"e" = "$EDITOR";
|
"e" = "$EDITOR";
|
||||||
"q" = "${pkgs.libqalculate}/bin/qalc";
|
"q" = "${pkgs.libqalculate}/bin/qalc";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user