mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-01-31 08:13:06 +01:00
Jo
e1bbf4856e
refactor: remove some comments feat: set VSCodium color scheme to Catppuccin Macchiato
19 lines
391 B
Nix
19 lines
391 B
Nix
{
|
|
lib,
|
|
namespace,
|
|
config,
|
|
...
|
|
}: with lib; with lib.${namespace};
|
|
let
|
|
cfg = config.${namespace}.common.shell;
|
|
in {
|
|
options.${namespace}.common.shell = {
|
|
enable = mkEnableOption "Modify the standard shell options";
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
environment.shells = with pkgs; [ fish ];
|
|
users.defaultUserShell = pkgs.fish;
|
|
programs.fish.enable = true;
|
|
};
|
|
}
|