Reworked KDE Theme reminder to be a popup. Fixed Trayscale not working by default.

This commit is contained in:
2025-09-03 14:27:29 +02:00
parent f4e77e64c9
commit 22b55e455c
24 changed files with 62 additions and 38 deletions

9
configuration.nix Normal file → Executable file
View File

@ -10,7 +10,7 @@
#Nix flake file limit: ulimit -n 500000
{ config, pkgs, ... }:
{ config, pkgs, username, ... }:
{
#Assign Swap to the PC
@ -100,8 +100,9 @@
tailscale = {
enable = true;
extraUpFlags = [
"--operator=${builtins.getEnv "USER"}"
useRoutingFeatures = "client";
extraSetFlags = [
"--operator=${username}"
"--accept-routes"
];
};
@ -139,6 +140,8 @@
#In order for dynamically linked executables to work
programs.nix-ld.enable = true;
programs.steam.enable = true;
# Configure console keymap
console.keyMap = "de";

0
firefox.nix Normal file → Executable file
View File

0
flake.lock generated Normal file → Executable file
View File

0
flake.nix Normal file → Executable file
View File

View File

@ -8,24 +8,24 @@
[ (modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "sd_mod" ];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "uas" "sd_mod" ];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/e50e3c90-8486-46a2-aa7f-ec3ace52344e";
{ device = "/dev/disk/by-uuid/908d7dfb-fb97-4b78-80b5-dc8d810522e0";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/D876-ED20";
{ device = "/dev/disk/by-uuid/F4AB-9E6A";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};
swapDevices =
[ { device = "/dev/disk/by-uuid/a80421d5-1b37-4fd2-b308-fd5bbd81fe10"; }
[ { device = "/dev/disk/by-uuid/d969d107-c7b5-4d5e-8c47-310cacbd38d1"; }
];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
@ -34,7 +34,6 @@
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.eno1.useDHCP = lib.mkDefault true;
# networking.interfaces.tailscale0.useDHCP = lib.mkDefault true;
# networking.interfaces.wlp2s0.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";

0
home.nix Normal file → Executable file
View File

0
hyprland/hyprland-home.nix Normal file → Executable file
View File

0
hyprland/hyprland.conf Normal file → Executable file
View File

0
hyprland/hyprland.nix Normal file → Executable file
View File

0
neovim-home.nix Normal file → Executable file
View File

0
neovim.nix Normal file → Executable file
View File

4
other/aliases Normal file → Executable file
View File

@ -38,7 +38,9 @@ alias home-edit="sudoedit /etc/nixos/home.nix"
alias cd-nix="cd /etc/nixos/"
#KDE Plasma Specific
#-----
alias kde-theme-apply="source /etc/nixos/plasma/konsave.sh"
#Hyprland Specific
#-----

0
other/colors.sh Normal file → Executable file
View File

0
other/pfp.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 211 KiB

After

Width:  |  Height:  |  Size: 211 KiB

0
other/pfp.sh Normal file → Executable file
View File

0
other/wallpaper.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 8.9 MiB

After

Width:  |  Height:  |  Size: 8.9 MiB

1
packages.nix Normal file → Executable file
View File

@ -24,6 +24,7 @@
konsave #A package to transfer the look and feel of KDE Plasma to other machines
ocs-url
kdePackages.plasma-workspace
kdePackages.kdialog
openssh #SSH
zoxide #Alternatice to cd, browse files
fzf-zsh #Search for file names

47
plasma/autostart.nix Normal file → Executable file
View File

@ -1,12 +1,16 @@
{ config, pkgs, ... }:
{
#To show logs of services run: journalctl --user-unit={service-name} --user
systemd.user.services.set-wallpaper = {
enable = true;
description = "Set KDE Plasma wallpaper";
#after = [ "plasma-desktop.service" ];
serviceConfig.ExecStart = [ "/run/current-system/sw/bin/plasma-apply-wallpaperimage /etc/nixos/other/wallpaper.png" ];
wantedBy = [ "graphical-session.target" ];
serviceConfig = {
ExecStart = [ "/run/current-system/sw/bin/plasma-apply-wallpaperimage /etc/nixos/other/wallpaper.png" ];
Type = "oneshot";
Restart = "on-failure";
RestartSec = "5s";
@ -17,9 +21,10 @@
enable = true;
description = "Automatically start Yakuake";
after = [ "graphical-session.target" ];
serviceConfig.ExecStart = [ "${pkgs.kdePackages.yakuake}/bin/yakuake" ];
wantedBy = [ "graphical-session.target" ];
serviceConfig = {
ExecStart = [ "${pkgs.kdePackages.yakuake}/bin/yakuake" ];
Type = "oneshot";
Restart = "on-failure";
RestartSec = "5s";
@ -27,16 +32,34 @@
};
};
systemd.user.services.theme-set-reminder = {
enable = true;
description = "Remind the user to apply the custom Plasma Theme shipped with this NixOS";
after = [ "graphical-session.target" ];
wantedBy = [ "graphical-session.target" ];
serviceConfig = {
# ExecStart = [ "${pkgs.kdePackages.kdialog}/bin/kdialog --passivepopup \"Dont forget to apply custom system theme! (run kde-theme-apply in terminal)\"" ];
ExecStart = [ "/etc/nixos/plasma/theme-popup.sh" ];
Type = "oneshot";
Restart = "on-failure";
RestartSec = "5s";
# Environment = "PATH=/run/current-system/sw/bin:/etc/profiles/per-user/$USER/bin";
# Environment = "DISPLAY=:0";
};
};
systemd.user.services.autostart-trayscale = {
enable = true;
description = "Automatically start Trayscale";
#after = [ "plasma-desktop.service" ];
serviceConfig.ExecStart = [ "${pkgs.trayscale}/bin/trayscale --hide-window" ];
wantedBy = [ "default.target" ];
serviceConfig = {
Type = "oneshot";
Restart = "on-failure";
RestartSec = "5s";
};
enable = true;
description = "Automatically start Trayscale";
#after = [ "plasma-desktop.service" ];
wantedBy = [ "default.target" ];
serviceConfig = {
ExecStart = [ "${pkgs.trayscale}/bin/trayscale --hide-window" ];
Type = "oneshot";
Restart = "on-failure";
RestartSec = "5s";
};
};
}

9
plasma/kde-plasma.nix Normal file → Executable file
View File

@ -32,13 +32,11 @@ in
# variant = "";
#};
#theme-reminder uses a definitive /home/cookiez path!!!
system.activationScripts.script.text = ''
source /etc/nixos/other/colors.sh
source /etc/nixos/other/pfp.sh
source /etc/nixos/other/pfp.sh
source /etc/nixos/plasma/theme-reminder.sh
'';
'';
#services.displayManager.sddm = {
# enable = true;
@ -55,7 +53,4 @@ in
# background = "${background-package}"
# '')
];
programs.steam.enable = true;
}

0
plasma/konsave.sh Normal file → Executable file
View File

11
plasma/theme-popup.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/sh
sleep 15
FLAG_FILE="/home/cookiez/.flags/theme-flag"
if [ ! -f "$FLAG_FILE" ]; then
/run/current-system/sw/bin/kdialog --passivepopup "Dont forget to apply custom system theme! (run kde-theme-apply in terminal)" 60
fi
echo "Finished Popup Script!"

View File

@ -1,9 +0,0 @@
source /etc/nixos/other/colors.sh
FLAG_FILE="/home/cookiez/.flags/theme-flag"
if [ ! -f "$FLAG_FILE" ]; then
echo -e "${RED}Warning: Make sure to apply the custom system theme!${NOCOLOR} (source '/etc/nixos/plasma/konsave.sh')"
fi
#else
# echo "Flag file exists - Theme should be applied already!"
#fi

0
plasma/theme.knsv Normal file → Executable file
View File

1
zsh.nix Normal file → Executable file
View File

@ -9,7 +9,6 @@
shellInit = ''
source /etc/nixos/other/aliases
source /etc/nixos/plasma/theme-reminder.sh
'';