aboutsummaryrefslogtreecommitdiff
path: root/modules/zsh.nix
diff options
context:
space:
mode:
authorStefan Weigl-Bosker <stefan@s00.xyz>2025-03-05 15:05:06 -0500
committerStefan Weigl-Bosker <stefan@s00.xyz>2025-03-05 15:05:06 -0500
commitd345455cc91df176b2b1ec7d50e67967c3f18c0c (patch)
tree42630111a87f0e7a16166e89ecb7d11e44850ed3 /modules/zsh.nix
parent26c2673b6923a1906c8c4cfcf70bd4c79916e417 (diff)
downloadhome-d345455cc91df176b2b1ec7d50e67967c3f18c0c.tar.gz
more improvements to service management
Diffstat (limited to 'modules/zsh.nix')
-rw-r--r--modules/zsh.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/modules/zsh.nix b/modules/zsh.nix
deleted file mode 100644
index 5085263..0000000
--- a/modules/zsh.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{ config, lib, pkgs, ... }:
-let
- cfg = config.modules.zsh;
-in
-{
- options.modules.zsh = {
- enable = lib.mkEnableOption "zsh";
- };
-
- config = {
- home.packages = with pkgs; [
- zsh
- oh-my-zsh
- zsh-autosuggestions
- ];
-
- programs.zsh = lib.mkIf cfg.enable {
- enable = true;
- enableCompletion = true;
- autosuggestion.enable = true;
- oh-my-zsh = {
- enable = true;
- theme = "lambda";
- };
- };
- };
-}