Update some programs
This commit is contained in:
parent
440a8773ca
commit
e7360fea7d
4 changed files with 17 additions and 1 deletions
|
@ -21,6 +21,7 @@
|
||||||
|
|
||||||
extraOptions = ''
|
extraOptions = ''
|
||||||
experimental-features = nix-command flakes
|
experimental-features = nix-command flakes
|
||||||
|
extra-platforms = x86_64-darwin
|
||||||
keep-derivations = true
|
keep-derivations = true
|
||||||
keep-outputs = true
|
keep-outputs = true
|
||||||
auto-optimise-store = true
|
auto-optimise-store = true
|
||||||
|
|
1
home.nix
1
home.nix
|
@ -10,7 +10,6 @@
|
||||||
./programs/nvim
|
./programs/nvim
|
||||||
|
|
||||||
./programs/git.nix
|
./programs/git.nix
|
||||||
./programs/lazygit.nix
|
|
||||||
|
|
||||||
./programs/bat.nix
|
./programs/bat.nix
|
||||||
|
|
||||||
|
|
|
@ -35,6 +35,16 @@
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
name = "done-fish";
|
||||||
|
src = pkgs.fetchFromGitHub {
|
||||||
|
owner = "nifoc";
|
||||||
|
repo = "done";
|
||||||
|
rev = "2f4e94d8306224f63cd12fb992318985a83d51a8";
|
||||||
|
sha256 = "Pq8HEISGjpCTXBIyukcLUK8r1hJ3/QXAklRCesm4nQ0=";
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
name = "fzf-fish";
|
name = "fzf-fish";
|
||||||
src = pkgs.fetchFromGitHub {
|
src = pkgs.fetchFromGitHub {
|
||||||
|
@ -128,6 +138,9 @@
|
||||||
source "$custom_script"
|
source "$custom_script"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Plugin: done
|
||||||
|
set -g __done_min_cmd_duration 10000
|
||||||
'';
|
'';
|
||||||
|
|
||||||
interactiveShellInit = ''
|
interactiveShellInit = ''
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
programs.starship = {
|
programs.starship = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
package = pkgs.pkgs-x86.starship;
|
||||||
enableFishIntegration = true;
|
enableFishIntegration = true;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
|
|
Loading…
Reference in a new issue