ooknet/system/modules/user/shell/default.nix

19 lines
306 B
Nix

{ lib, ... }:
let
inherit (lib) types mkOption;
in
{
imports = [
./fish
./bash
./zsh
];
options.systemModules.user.shell = mkOption {
type = types.enum ["fish" "zsh" "bash"];
default = "zsh";
description = "The user shell to use. Select from 'zsh' 'bash' 'fish'";
};
}