profiles: add X

This commit is contained in:
Bruno BELANYI 2021-05-09 11:56:28 +02:00
parent 10adc23223
commit e7d8548b80
2 changed files with 24 additions and 0 deletions

View File

@ -5,5 +5,6 @@
./bluetooth.nix
./gtk.nix
./wm.nix
./x.nix
];
}

23
profiles/x.nix Normal file
View File

@ -0,0 +1,23 @@
{ config, lib, pkgs, ... }:
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;
# Nice wallpaper
services.xserver.displayManager.lightdm.background =
let
wallpapers = "${pkgs.plasma-workspace-wallpapers}/share/wallpapers";
in
"${wallpapers}/summer_1am/contents/images/2560x1600.jpg";
# X configuration
my.home.x.enable = true;
};
}