nixos-configs/home/ronja/default.nix

58 lines
1.2 KiB
Nix
Raw Normal View History

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