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}
'')
];
}