home(util): add minimal system option

This commit is contained in:
514fpv 2024-01-17 19:31:56 +08:00
parent 50bbf32320
commit 4b3d8dcc54
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw
3 changed files with 32 additions and 25 deletions

View file

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