nix-config/modules/nixos/profiles/x/default.nix
Bruno BELANYI c2f07a6529 nixos: profiles: x: remove wallpaper
I don't actually care much for the wallpaper, I never look at it.
2026-04-04 23:05:58 +01:00

17 lines
313 B
Nix

{ config, lib, ... }:
let
cfg = config.my.profiles.x;
in
{
options.my.profiles.x = with lib; {
enable = mkEnableOption "X profile";
};
config = lib.mkIf cfg.enable {
# Enable the X11 windowing system.
services.xserver.enable = true;
# X configuration
my.home.x.enable = true;
};
}