Set greeter wallpaper and add Blender

This commit is contained in:
Bart van der Braak 2024-10-18 15:17:16 +02:00
parent 5d95e7c409
commit 4eeef86ac9
3 changed files with 13 additions and 3 deletions

View file

@ -1,5 +1,8 @@
{ pkgs, inputs, config, ... }:
let
customWallpaper = "/nix/store/fvplr8bbp5b9n2x6s21bp4nai80adk8j-wallhaven-zyerpj.jpg";
in
{
environment.systemPackages = with pkgs; with inputs; [
inputs.zen-browser.packages."${system}".default
@ -11,5 +14,9 @@
fzf
jq
ripgrep
(pkgs.writeTextDir "share/sddm/themes/breeze/theme.conf.user" ''
[General]
background=${customWallpaper}
'')
];
}

View file

@ -1,11 +1,13 @@
{ pkgs, ... }:
{
# X11 is disabled, but we're using SDDM with Wayland
# Desktop, display and greeter configuration
services.xserver.enable = false;
services.displayManager.sddm.enable = true;
services.displayManager.sddm.wayland.enable = true;
services.desktopManager.plasma6.enable = true;
services.displayManager.sddm = {
enable = true;
wayland.enable = true;
};
# Audio system with PipeWire
# Enable PipeWire and ALSA support

View file

@ -23,6 +23,7 @@
corepack_22
azure-cli
sops
blender
];
};