62 lines
1.2 KiB
Nix
62 lines
1.2 KiB
Nix
{ config, pkgs, ... }: {
|
|
home-manager.users.${config.constants.userName} = {
|
|
home.packages = with pkgs; [
|
|
exactaudiocopy
|
|
haruna
|
|
libsForQt5.qt5.qtwebsockets
|
|
lutris
|
|
nvtop-amd
|
|
mono
|
|
picard
|
|
qbittorrent
|
|
sweet
|
|
sweet-nova
|
|
tauon
|
|
telegram-desktop
|
|
thunderbird
|
|
wallpaper-engine-kde-plugin
|
|
wineWowPackages.waylandFull
|
|
winetricks
|
|
yuzu-mainline
|
|
];
|
|
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;
|
|
};
|
|
dconf.enable = true;
|
|
steam.enable = true;
|
|
};
|
|
|
|
services = {
|
|
colord.enable = true;
|
|
xserver = {
|
|
enable = true;
|
|
displayManager = {
|
|
defaultSession = "plasmawayland";
|
|
autoLogin.user = "macronova";
|
|
sddm = {
|
|
enable = true;
|
|
autoLogin.relogin = true;
|
|
};
|
|
};
|
|
desktopManager.plasma5.enable = true;
|
|
videoDrivers = [ "amdgpu" ];
|
|
};
|
|
};
|
|
}
|