mirror of
https://github.com/ellmau/nixos.git
synced 2025-12-21 09:49:39 +01:00
21 lines
457 B
Nix
21 lines
457 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
nixosConfig,
|
|
...
|
|
}:
|
|
with lib; {
|
|
config = let
|
|
cfg = nixosConfig.elss.graphical;
|
|
in
|
|
mkIf cfg.enable {
|
|
services = {
|
|
blueman-applet.enable = true;
|
|
};
|
|
gtk.enable = true;
|
|
home.file.".background-image".source = ../../common/wallpaper/nix-wallpaper-nineish-dark-gray.png;
|
|
home.file.".background-image.png".source = ../../common/wallpaper/nix-wallpaper-nineish-dark-gray.png;
|
|
};
|
|
}
|