1
0
mirror of https://github.com/ellmau/nixos.git synced 2025-12-19 09:29:36 +01:00

Fix users/ellmau/graphical.nix

This commit is contained in:
Stefan Ellmauthaler 2023-03-27 15:53:08 +02:00
parent b7e5df26b5
commit 81f01ef709
Failed to extract signature

View File

@ -2,6 +2,7 @@
config, config,
pkgs, pkgs,
lib, lib,
nixosConfig,
... ...
}: }:
with lib; { with lib; {
@ -10,9 +11,9 @@ with lib; {
in in
mkIf cfg.enable { mkIf cfg.enable {
services = { services = {
gtk.enable = true;
blueman-applet.enable = true; blueman-applet.enable = true;
home.file.".background-image".source = ../../common/wallpaper/nix-wallpaper-nineish-dark-gray.png;
}; };
gtk.enable = true;
home.file.".background-image".source = ../../common/wallpaper/nix-wallpaper-nineish-dark-gray.png;
}; };
} }