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

69 lines
1.7 KiB
Nix
Raw Normal View History

{pkgs, ...}: {
2023-06-25 22:18:07 +00:00
programs = {
home-manager.enable = true;
2023-06-25 22:18:07 +00:00
vim = {
enable = true;
2023-06-25 22:18:07 +00:00
defaultEditor = true;
};
2023-06-25 22:18:07 +00:00
zsh = {
enable = true;
enableSyntaxHighlighting = true;
oh-my-zsh = {
enable = true;
plugins = [ "sudo" "git" "golang" "thefuck" "kubectl" "emoji" "pip" "npm" "yarn" "vscode" ];
theme = "agnoster";
};
};
2023-06-25 22:18:07 +00:00
waybar = {
enable = true;
systemd.enable = true;
# see https://github.com/theCode-Breaker/riverwm/blob/main/waybar/river/config-river
# https://blog.cascade.moe/posts/hyprland-configure/
settings = {
mainBar = import ./config/waybar.nix;
};
2023-06-25 22:18:07 +00:00
style = import ./config/waybar-style.nix;
2023-06-21 08:53:13 +00:00
};
2023-06-25 22:18:07 +00:00
kitty = {
enable = true;
font = {
name = "Powerline";
size = 12;
};
2023-06-25 22:18:07 +00:00
keybindings = {
"ctrl+c" = "copy_or_interrupt";
"ctrl+v" = "paste_from_clipboard";
};
2023-06-21 08:53:13 +00:00
2023-06-25 22:18:07 +00:00
shellIntegration = {
enableZshIntegration = true;
enableBashIntegration = true;
};
settings = {
2023-06-25 23:12:37 +00:00
background_opacity = "0.8";
2023-06-25 22:18:07 +00:00
};
};
2023-06-21 08:11:21 +00:00
2023-06-25 22:18:07 +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";
};
2023-06-21 08:11:21 +00:00
};
2023-06-26 01:45:57 +00:00
wlogout = {
enable = false;
};
2023-06-21 08:11:21 +00:00
};
}