move programs to common

This commit is contained in:
Noa Aarts 2024-03-01 12:50:03 +01:00
parent 9b52db0aee
commit e2c2018b90
8 changed files with 1161 additions and 525 deletions

32
common/zsh.nix Normal file
View file

@ -0,0 +1,32 @@
{ config, pkgs, inputs, ... }:
{
programs.zsh = {
enable=true;
shellAliases = {
ll = "lsd -l";
lt = "lsd -l --tree";
# TODO find if i can make these use the 'current' flake
utest = "sudo nixos-rebuild test --flake $HOME/nixos#default";
update = "sudo nixos-rebuild switch --flake $HOME/nixos#default";
};
history = {
path = "${config.xdg.dataHome}/zsh/history";
size = 10000;
};
oh-my-zsh = {
enable = true;
plugins = [ "git" ];
theme = "frisk";
};
};
programs.kitty = {
enable = true;
settings = {
confirm_os_window_close = 0;
};
shellIntegration.enableZshIntegration = true;
};
}