feat: add wallpaper as module, add optionals

This commit is contained in:
Swarsel 2024-07-25 16:56:36 +02:00
parent 6a63090c68
commit 41e2f54618
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
14 changed files with 619 additions and 498 deletions

View file

@ -1,4 +1,4 @@
{ pkgs, home-manager, ... }:
{ inputs, pkgs, home-manager, config, ... }:
{
stylix = {
@ -47,11 +47,14 @@
};
targets.grub.enable = false; # the styling makes grub more ugly
image = config.swarselsystems.wallpaper;
};
home-manager.users.swarsel = {
stylix.targets = {
emacs.enable = false;
waybar.enable = false;
stylix = {
targets = {
emacs.enable = false;
waybar.enable = false;
};
};
};
}