nixos-config/linux/blitzar/gui.nix

67 lines
1.3 KiB
Nix
Raw Normal View History

2023-10-27 15:20:59 -07:00
{ config, pkgs, ... }: {
2023-10-09 10:44:07 -07:00
home-manager.users.${config.constants.userName} = {
home.packages = with pkgs; [
exactaudiocopy
haruna
lutris
nvtop-amd
mono
picard
2023-10-27 15:20:59 -07:00
(python3.withPackages (ps: with ps; [
websockets
]))
2023-10-09 10:44:07 -07:00
qbittorrent
sweet
sweet-nova
2023-10-25 17:37:16 -07:00
tauon
2023-10-09 10:44:07 -07:00
telegram-desktop
thunderbird
2023-10-27 15:20:59 -07:00
wallpaper-engine-kde-plugin-lib
2023-10-09 10:44:07 -07:00
wineWowPackages.waylandFull
winetricks
yuzu-mainline
] ++ (with pkgs.libsForQt5; [
kirigami-addons
qt5.qtwebsockets
2023-10-27 15:20:59 -07:00
]);
2023-10-09 10:44:07 -07:00
programs = {
firefox.enable = true;
kitty = {
enable = true;
settings = {
background_opacity = "0.72";
remember_window_size = "no";
};
theme = "Tokyo Night Moon";
};
obs-studio.enable = true;
};
};
programs.clash-verge = {
enable = true;
tunMode = true;
autoStart = true;
};
programs.dconf.enable = true;
programs.steam.enable = true;
services.colord.enable = true;
services.xserver = {
enable = true;
displayManager = {
defaultSession = "plasmawayland";
autoLogin.user = "macronova";
sddm = {
enable = true;
autoLogin.relogin = true;
};
};
desktopManager.plasma5.enable = true;
videoDrivers = [ "amdgpu" ];
};
}