nixos-config/linux/blitzar/gui.nix

63 lines
1.2 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
2023-11-09 16:24:40 -08:00
libsForQt5.qt5.qtwebsockets
2023-10-09 10:44:07 -07:00
lutris
nvtop-amd
mono
picard
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-11-09 16:24:40 -08:00
wallpaper-engine-kde-plugin
2023-10-09 10:44:07 -07:00
wineWowPackages.waylandFull
winetricks
yuzu-mainline
2023-11-09 16:24:40 -08: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;
};
};
2023-11-09 19:37:21 -08:00
programs = {
clash-verge = {
enable = true;
tunMode = true;
autoStart = true;
};
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 = {
defaultSession = "plasmawayland";
autoLogin.user = "macronova";
sddm = {
enable = true;
autoLogin.relogin = true;
};
2023-10-09 10:44:07 -07:00
};
2023-11-09 19:37:21 -08:00
desktopManager.plasma5.enable = true;
videoDrivers = [ "amdgpu" ];
2023-10-09 10:44:07 -07:00
};
};
}