nix-config/home/x/default.nix

19 lines
275 B
Nix
Raw Normal View History

2021-04-02 20:46:45 +02:00
{ config, lib, ... }:
let
cfg = config.my.home.x;
in
{
imports = [
./cursor.nix
2021-04-02 20:46:45 +02:00
./keyboard.nix
];
options.my.home.x = with lib; {
enable = mkEnableOption "X server configuration";
};
config = lib.mkIf cfg.enable {
xsession.enable = true;
};
}