nixos: enable shell in user configuration

This commit is contained in:
Guanran Wang 2023-11-09 11:51:35 +08:00
parent 311e314ca7
commit f7287b37fe
Signed by: nyancat
SSH key fingerprint: SHA256:8oWGKciPALWut/6WA27oFKofX+6Wtc0gQnsefXLQx/8
2 changed files with 3 additions and 2 deletions

View file

@ -30,8 +30,6 @@
vimAlias = true; vimAlias = true;
defaultEditor = true; defaultEditor = true;
}; };
fish.enable = true;
#zsh.enable = true;
}; };
# Services # Services

View file

@ -19,6 +19,9 @@
packages = []; packages = [];
}; };
# for default shell
programs.fish.enable = true;
imports = [ imports = [
### Flakes ### Flakes
../../../../flakes/nixos/sops-nix.nix ../../../../flakes/nixos/sops-nix.nix