nixos-config/linux/blitzar/gui.nix

121 lines
3.2 KiB
Nix
Raw Normal View History

2024-02-24 00:04:32 -08:00
{ config, ... }:
2024-01-16 18:48:06 -08:00
2023-12-06 21:46:16 -08:00
let usr = config.constants.userName; in {
2024-02-24 00:04:32 -08:00
home-manager.users.${usr} = { config, pkgs, ... }:
let xdgCfg = config.xdg; in {
gtk = {
2023-10-09 10:44:07 -07:00
enable = true;
2024-03-03 21:12:38 -08:00
gtk2.configLocation = "${xdgCfg.configHome}/gtk-2.0/gtkrc";
2024-02-24 00:04:32 -08:00
theme = {
name = "Sweet-Dark";
package = pkgs.sweet;
2023-10-09 10:44:07 -07:00
};
};
2024-02-24 00:04:32 -08:00
home.packages = with pkgs; [
exactaudiocopy
haruna
2024-03-08 20:14:20 -08:00
joplin-desktop
2024-02-24 00:04:32 -08:00
lutris
nvtop-amd
picard
2024-03-02 15:10:23 -08:00
qbittorrent
2024-02-24 00:04:32 -08:00
sweet-nova
tauon
telegram-desktop
thunderbird
2024-03-08 20:14:20 -08:00
wallpaper-engine-plasma6-plugin
2024-02-24 00:04:32 -08:00
wineWowPackages.waylandFull
winetricks
yorha-sound-theme
2024-03-08 20:14:20 -08:00
# yuzu
] ++ (with kdePackages;[
2024-03-02 15:10:23 -08:00
# polonium
2024-03-08 20:14:20 -08:00
qtmultimedia
qtwebchannel
qtwebengine
2024-03-02 15:10:23 -08:00
qtwebsockets
2024-02-24 00:04:32 -08:00
]);
programs = {
firefox.enable = true;
gpg = {
enable = true;
homedir = "${xdgCfg.dataHome}/gnupg";
};
kitty = {
enable = true;
settings = {
background_opacity = "0.96";
remember_window_size = "no";
};
theme = "Tokyo Night Moon";
};
obs-studio.enable = true;
zathura = {
enable = true;
options = {
notification-error-bg = "#1d2021";
notification-error-fg = "#fb4934";
notification-warning-bg = "#1d2021";
notification-warning-fg = "#fabd2f";
notification-bg = "#1d2021";
notification-fg = "#b8bb26";
completion-bg = "#504945";
completion-fg = "#ebdbb2";
completion-group-bg = "#3c3836";
completion-group-fg = "#928374";
completion-highlight-bg = "#83a598";
completion-highlight-fg = "#504945";
index-bg = "#504945";
index-fg = "#ebdbb2";
index-active-bg = "#83a598";
index-active-fg = "#504945";
inputbar-bg = "#1d2021";
inputbar-fg = "#ebdbb2";
statusbar-bg = "#504945";
statusbar-fg = "#ebdbb2";
highlight-color = "#fabd2f";
highlight-active-color = "#fe8019";
default-bg = "#1d2021";
default-fg = "#ebdbb2";
render-loading = "true";
render-loading-bg = "#1d2021";
render-loading-fg = "#ebdbb2";
recolor = "true";
recolor-darkcolor = "#ebdbb2";
recolor-lightcolor = "#1d2021";
recolor-keephue = "true";
};
2023-11-25 11:16:06 -08:00
};
};
2024-02-24 00:04:32 -08:00
services = {
easyeffects.enable = true;
gpg-agent = {
enable = true;
pinentryFlavor = "qt";
};
2024-02-22 21:51:12 -08:00
};
2023-12-23 21:10:19 -08:00
};
2023-10-09 10:44:07 -07:00
2023-11-09 19:37:21 -08:00
programs = {
dconf.enable = true;
steam.enable = true;
2023-10-09 10:44:07 -07:00
};
2023-11-09 19:37:21 -08:00
services = {
colord.enable = true;
xserver = {
enable = true;
displayManager = {
2023-11-28 20:28:32 -08:00
autoLogin.user = usr;
2023-11-09 19:37:21 -08:00
sddm = {
enable = true;
2024-02-22 21:51:12 -08:00
settings.General.GreeterEnvironment = "QT_SCREEN_SCALE_FACTORS=2,QT_FONT_DPI=192";
2024-01-03 21:11:10 +08:00
wayland.enable = true;
2023-11-09 19:37:21 -08:00
};
2023-10-09 10:44:07 -07:00
};
2024-03-02 15:10:23 -08:00
desktopManager.plasma6.enable = true;
2023-11-09 19:37:21 -08:00
videoDrivers = [ "amdgpu" ];
2023-10-09 10:44:07 -07:00
};
};
}