fix on setting the proper completions and sets the shell

This commit is contained in:
alsaiduq-lab 2025-03-14 06:17:35 -06:00
parent fbab7ca2a2
commit e92cd95bd6
2 changed files with 23 additions and 13 deletions

View file

@ -1,12 +1,13 @@
{ config, pkgs, lib, ... }:
let
fish-rust = pkgs.callPackage ../pkgs/fish-rust { };
in
{
programs.fish.enable = true;
programs.fish = {
enable = true;
package = fish-rust;
};
environment.systemPackages = with pkgs; [
fish-rust
starship
fzf
bat
@ -14,4 +15,5 @@ in
fd
ripgrep
];
users.users.cobray.shell = lib.mkForce fish-rust;
}