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.

at 491d2abd3fd4e2964a879f58fdd2ac9f6ea7f957 12 lines 160 B view raw
1{ pkgs, ... }: 2 3{ 4 config = { 5 programs.bash = { 6 completion = { 7 enable = true; 8 package = pkgs.bash-completion; 9 }; 10 }; 11 }; 12}