home: x: put modules into folders

This commit is contained in:
Bruno BELANYI 2021-09-25 15:29:30 +02:00
parent acc23ab684
commit b90629fdd9
3 changed files with 2 additions and 2 deletions

12
home/x/cursor/default.nix Normal file
View file

@ -0,0 +1,12 @@
{ config, lib, pkgs, ... }:
let
cfg = config.my.home.x;
in
{
config = lib.mkIf cfg.enable {
xsession.pointerCursor = {
package = pkgs.ambroisie.vimix-cursors;
name = "Vimix-cursors";
};
};
}