Bruno BELANYI
ad1d907c25
I would like to check out alternative themes. Notably Quintom [1], Volantes [2], and Vimix [3]. [1]: https://gitlab.com/Burning_Cube/quintom-cursor-theme [2]: https://github.com/varlesh/volantes-cursors [3]: https://github.com/vinceliuice/Vimix-cursors
19 lines
275 B
Nix
19 lines
275 B
Nix
{ config, lib, ... }:
|
|
let
|
|
cfg = config.my.home.x;
|
|
in
|
|
{
|
|
imports = [
|
|
./cursor.nix
|
|
./keyboard.nix
|
|
];
|
|
|
|
options.my.home.x = with lib; {
|
|
enable = mkEnableOption "X server configuration";
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
xsession.enable = true;
|
|
};
|
|
}
|