feat(zsh): add zsh shell
This commit is contained in:
parent
916751169b
commit
e0ee42f65b
13
faucet/util/default.nix
Normal file
13
faucet/util/default.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue