Changed KDE plasma theme and configured Kitty as Terminal

This commit is contained in:
2025-10-15 14:50:38 +02:00
parent 713c60bc02
commit 820c7b4454
13 changed files with 379 additions and 16 deletions

View File

@ -1,4 +1,4 @@
{config, pkgs, libs, inputs, ...}:
{config, pkgs, libs, inputs, nix-flatpak, ...}:
{
environment.systemPackages = with pkgs; [
#Essenteals (CLI Only)
@ -47,9 +47,10 @@
vlc
#steam
#heroic
lutris
#putty Need to find alternative as it sucks on linux
mission-center
trayscale #sudo tailscale set --operator=$USER --> Needed to make it work!
trayscale
spotify
rpi-imager
kdePackages.yakuake
@ -62,11 +63,12 @@
#i2p
gparted #Disk partition Manager
#rustdesk
mediawriter
realvnc-vnc-viewer
eddie #AirVPN desktop client
chromium #For Youtube app to work
kdePackages.bluez-qt
#latte-dock
kitty
#CLI tools
yt-dlp
@ -84,4 +86,23 @@
"dotnet-sdk-6.0.428"
"dotnet-runtime-6.0.36"
];
services.flatpak = {
enable = true;
remotes = [
{
name = "flathub";
location = "https://dl.flathub.org/repo/flathub.flatpakrepo";
}
];
packages = [
{
appId = "org.vinegarhq.Sober";
origin = "flathub";
commit = "e28fd81675b0871614ccdc8fc66c6da6761dd11333a65900a0451edf07ef0ea6";
}
];
};
}