feat(zsh): add zsh shell

This commit is contained in:
514fpv 2024-01-02 14:46:36 +08:00
parent 916751169b
commit e0ee42f65b
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw

13
faucet/util/default.nix Normal file
View file

@ -0,0 +1,13 @@
{ pkgs
, lib
, config
, ... }: with lib; let
cfg = config.faucet.util;
in {
options.faucet.util = { };
config = {
programs.zsh.enable = true;
environment.shells = singleton pkgs.zsh;
};
}