NixOS + home-manager configs, mirrored from GitLab SaaS. gitlab.com/andreijiroh-dev/nixops-config
nix-flake nixos home-manager nixpkgs nix-flakes
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix shell stuff for bash

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>

+7 -8
+7 -8
shared/shells/bash.nix
··· 2 2 3 3 { 4 4 programs.bash = { 5 - enable = true; 5 + #enable = true; 6 6 completion = { 7 7 enable = true; 8 - package = with pkgs; [ 9 - _1password-cli 10 - gh 11 - glab 12 - firefoxpwa 13 - doppler 14 - ]; 8 + package = pkgs.bash-completion; 9 + }; 10 + undistractMe = { 11 + enable = true; 12 + playSound = true; 13 + timeout = 15; 15 14 }; 16 15 }; 17 16 }