configuration.nix/home/laptop/programs/default.nix
2023-09-29 07:07:57 +03:00

44 lines
927 B
Nix

{ pkgs, ... }: {
imports = [ ./neovim ./sway ./tmux.nix ./zsh.nix ./lf ];
programs = {
thunderbird = {
enable = true;
profiles = { ivan = { isDefault = true; }; };
};
chromium = {
enable = true;
package = pkgs.ungoogled-chromium;
};
swaylock = {
enable = true;
settings = {
color = "000000";
line-color = "ffffff";
show-failed-attempts = true;
};
};
obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [ wlrobs ];
};
kitty = {
enable = true;
settings = {
enable_tab_bar = false;
background_opacity = "0.96";
cursor_shape = "beam";
};
};
git = {
enable = true;
userName = "Ivan Dimitrov";
userEmail = "ivan@idimitrov.dev";
extraConfig = {
color.ui = "auto";
pull.rebase = true;
};
};
};
}