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

9
programs/direnv.nix Normal file
View File

@@ -0,0 +1,9 @@
{ pkgs, ... }:
{
programs.direnv = {
enable = true;
enableZshIntegration = true;
nix-direnv.enable = true;
};
}

8
programs/kitty.nix Normal file
View File

@@ -0,0 +1,8 @@
{ pkgs, ... }:
{
programs.kitty = {
enable = true;
settings.confirm_quit = false;
};
}

11
programs/zsh.nix Normal file
View File

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