mirror of
https://github.com/ryanccn/flake.git
synced 2025-12-06 08:10:43 +01:00
chore: update inputs, miscellaneous changes
This commit is contained in:
parent
3861c0442b
commit
46cf265a54
12 changed files with 48 additions and 206 deletions
|
|
@ -1,18 +0,0 @@
|
|||
_: {
|
||||
programs.atuin = {
|
||||
enable = true;
|
||||
|
||||
enableBashIntegration = false;
|
||||
enableFishIntegration = true;
|
||||
enableZshIntegration = true;
|
||||
flags = ["--disable-up-arrow"];
|
||||
|
||||
settings = {
|
||||
update_check = false;
|
||||
history_filter = [
|
||||
"^clear"
|
||||
"^exit"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -1,11 +1,6 @@
|
|||
_: {
|
||||
programs.direnv = {
|
||||
enable = true;
|
||||
|
||||
enableBashIntegration = true;
|
||||
enableZshIntegration = true;
|
||||
# enableFishIntegration = true;
|
||||
|
||||
nix-direnv.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,6 +5,8 @@
|
|||
in {
|
||||
programs.fish = {
|
||||
enable = true;
|
||||
catppuccin.enable = true;
|
||||
|
||||
inherit shellAbbrs shellAliases;
|
||||
|
||||
shellInit = ''
|
||||
|
|
@ -34,8 +36,12 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
# home.file.".config/fish/conf.d" = {
|
||||
# source = ./fish/conf.d;
|
||||
# recursive = true;
|
||||
# };
|
||||
programs.fzf = {
|
||||
enable = true;
|
||||
catppuccin.enable = true;
|
||||
};
|
||||
|
||||
programs.zoxide = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -12,7 +12,10 @@ in {
|
|||
};
|
||||
|
||||
home.packages = with pkgs; [
|
||||
rust-bin.stable.latest.default
|
||||
(rust-bin.stable.latest.default.override {
|
||||
extensions = ["llvm-tools-preview"];
|
||||
})
|
||||
|
||||
cargo-bloat
|
||||
cargo-cache
|
||||
cargo-deny
|
||||
|
|
|
|||
|
|
@ -2,10 +2,6 @@ _: {
|
|||
programs.starship = {
|
||||
enable = true;
|
||||
|
||||
enableBashIntegration = true;
|
||||
enableZshIntegration = true;
|
||||
enableFishIntegration = true;
|
||||
|
||||
settings = {
|
||||
command_timeout = 1000;
|
||||
|
||||
|
|
@ -16,17 +12,17 @@ _: {
|
|||
|
||||
gcloud.disabled = true;
|
||||
|
||||
bun.format = "[$symbol($version )]($style)";
|
||||
bun.format = "[$symbol($version)]($style) ";
|
||||
cmd_duration.format = "[$duration]($style) ";
|
||||
deno.format = "[$symbol($version )]($style)";
|
||||
deno.format = "[$symbol($version)]($style) ";
|
||||
docker_context.format = "[$symbol$context]($style) ";
|
||||
git_branch.format = "[$symbol$branch(:$remote_branch)]($style) ";
|
||||
golang.format = "[$symbol($version )]($style)";
|
||||
golang.format = "[$symbol($version)]($style) ";
|
||||
nix_shell.format = "[$symbol$state( \($name\))]($style) ";
|
||||
nodejs.format = "[$symbol($version )]($style)";
|
||||
nodejs.format = "[$symbol($version)]($style) ";
|
||||
package.format = "[$symbol$version]($style) ";
|
||||
python.format = "[\${symbol}\${pyenv_prefix}(\${version} )(\($virtualenv\) )]($style)";
|
||||
rust.format = "[$symbol($version )]($style)";
|
||||
rust.format = "[$symbol($version)]($style) ";
|
||||
|
||||
aws.symbol = " ";
|
||||
bun.symbol = " ";
|
||||
|
|
|
|||
|
|
@ -1,9 +0,0 @@
|
|||
_: {
|
||||
programs.zoxide = {
|
||||
enable = true;
|
||||
|
||||
enableBashIntegration = true;
|
||||
enableZshIntegration = true;
|
||||
enableFishIntegration = true;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue