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