Evie Litherland-Smith
8c7f8dba52
Move collections to use default.nix in relevant directories Combine GUI elements into gui directory
15 lines
243 B
Nix
15 lines
243 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./bash.nix
|
|
./bat.nix
|
|
./direnv.nix
|
|
./fish.nix
|
|
./keychain.nix
|
|
./nix-index.nix
|
|
./readline.nix
|
|
./starship.nix
|
|
];
|
|
home.packages = with pkgs; [ dig file gnumake silver-searcher ];
|
|
}
|