refactor: organize shell settings

This commit is contained in:
Infinidoge 2021-10-01 10:50:20 -04:00
parent 13cc00b3bb
commit fad29f1c13
7 changed files with 15 additions and 7 deletions

View file

@ -0,0 +1,7 @@
{ ... }: {
imports = [
./bash.nix
./fish.nix
./zsh.nix
];
}

View file

@ -1,4 +1,6 @@
{ config, pkgs, ... }: {
imports = [ ./common.nix ];
programs = {
bash = {
enable = true;

View file

@ -1,7 +1,3 @@
{ ... }: {
imports = [
./bash.nix
./fish.nix
./zsh.nix
];
programs.command-not-found.enable = true;
}

View file

@ -1,4 +1,6 @@
{ config, lib, pkgs, ... }: {
imports = [ ./common.nix ];
programs = {
fish = {
enable = true;

View file

@ -1,4 +1,6 @@
{ config, lib, pkgs, ... }: {
imports = [ ./common.nix ];
programs = {
zsh = rec {
enable = true;