profiles: add X
This commit is contained in:
parent
e786eaddde
commit
125935ac0f
|
@ -5,5 +5,6 @@
|
||||||
./bluetooth.nix
|
./bluetooth.nix
|
||||||
./gtk.nix
|
./gtk.nix
|
||||||
./wm.nix
|
./wm.nix
|
||||||
|
./x.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
23
profiles/x.nix
Normal file
23
profiles/x.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue