This repository has been archived on 2023-07-23. You can view files and clone it, but cannot push or open issues or pull requests.
gpd-configurations/home/user/programs.nix

63 lines
1.4 KiB
Nix
Raw Normal View History

{pkgs, ...}: {
home-manager.enable = true;
vim = {
enable = true;
defaultEditor = true;
};
zsh = {
enable = true;
enableSyntaxHighlighting = true;
oh-my-zsh = {
enable = true;
plugins = [ "sudo" "git" "golang" "thefuck" "kubectl" "emoji" "pip" "npm" "yarn" "vscode" ];
theme = "agnoster";
};
};
waybar = {
enable = true;
systemd.enable = true;
2023-06-21 08:11:21 +00:00
# see https://github.com/theCode-Breaker/riverwm/blob/main/waybar/river/config-river
# https://blog.cascade.moe/posts/hyprland-configure/
settings = {
2023-06-21 08:11:21 +00:00
mainBar = import ./config/waybar.nix;
};
2023-06-21 08:11:21 +00:00
style = import ./config/waybar-style.nix;
};
kitty = {
enable = true;
2023-06-21 08:53:13 +00:00
font = {
name = "Powerline";
size = 12;
};
keybindings = {
"ctrl+c" = "copy_or_interrupt";
"ctrl+v" = "paste_from_clipboard";
};
shellIntegration = {
enableZshIntegration = true;
2023-06-21 08:53:13 +00:00
enableBashIntegration = true;
};
settings = {
background_opacity = 0.8;
};
};
2023-06-21 08:11:21 +00:00
rbw = {
enable = true;
settings = {
base_url = "https://pass.sense-t.eu.org";
email = "sense-t@sense-t.eu.org";
lock_timeout = 300;
pinentry = "gnome3";
};
};
}