nixos-configuration/home/ronja.nix

55 lines
1 KiB
Nix
Raw Normal View History

2024-10-27 12:33:35 +01:00
{ config, pkgs, ... }:
2023-09-24 12:39:28 +02:00
{
2024-10-26 12:32:15 +02:00
home.packages = with pkgs; [
2023-09-24 12:39:28 +02:00
## Apps
telegram-desktop
kdiff3
];
programs = {
home-manager.enable = true;
zsh = {
history = {
size = 10000;
path = "${config.xdg.dataHome}/zsh/history";
expireDuplicatesFirst = true;
};
oh-my-zsh = {
enable = true;
theme = "agnoster";
2024-10-27 12:33:35 +01:00
plugins = [
"git"
"sudo"
"systemadmin"
];
2023-09-24 12:39:28 +02:00
};
};
git = {
userName = "Ronja Spiegelberg";
userEmail = "ronja.spiegelberg@gmail.com";
extraConfig = {
pull.ff = "only";
merge.tool = "kdiff3";
};
};
chromium = {
enable = true;
extensions = [
{
# ublock origin
id = "cjpalhdlnbpafiamejdnhcphjbkeiagm";
}
{
id = "dcpihecpambacapedldabdbpakmachpb";
updateUrl = "https://raw.githubusercontent.com/iamadamdev/bypass-paywalls-chrome/master/updates.xml";
}
];
};
};
}