Modularize config

This commit is contained in:
2026-01-16 21:35:28 +01:00
parent 19cd15ebc5
commit dcb0ea1961
5 changed files with 102 additions and 83 deletions

11
programs/zsh.nix Normal file
View File

@@ -0,0 +1,11 @@
{ pkgs, ... }:
{
programs.zsh = {
enable = true;
oh-my-zsh = {
enable = true;
theme = "agnoster";
};
};
}