- Changed jetbrains ides to jetbrains toolbox to get more up to date versions

- Create a new Stylix module with wallpaper and font configuration
- Integrate Waybar into Niri
- Changed Discord application  to Vesktop
- Enable Waydroid virtualization
This commit is contained in:
2025-12-08 10:50:50 +01:00
parent 616d40d98c
commit b0b59b2413
23 changed files with 532 additions and 560 deletions

View File

@ -1,4 +1,15 @@
{config, pkgs, username, ...}:
let
# Define the custom background package with the correct relative path
background-package = pkgs.stdenvNoCC.mkDerivation {
name = "background-image";
src = ../other/wallpaper2.png; # Place wallpaper.jpg in the same directory as this config file
dontUnpack = true;
installPhase = ''
cp $src $out
'';
};
in
{
imports =
[
@ -44,7 +55,7 @@
};
};
virtualisation.waydroid.enable = true;
# Enable the X11 windowing system.
# You can disable this if you're only using the Wayland session.
@ -77,9 +88,12 @@
environment.systemPackages = with pkgs; [
kdePackages.plymouth-kcm
# (pkgs.writeTextDir "share/sddm/themes/breeze/theme.conf.user" ''
# [General]
# background = "${background-package}"
# '')
(pkgs.writeTextDir "share/sddm/themes/breeze/theme.conf.user" ''
[General]
background = "${background-package}"
'')
xdg-desktop-portal
kdePackages.xdg-desktop-portal-kde
pipewire
];
}