16 lines
410 B
Nix
Raw Normal View History

2019-09-16 15:53:44 +04:00
{ config, lib, pkgs, ... }: {
environment.systemPackages = with pkgs; [
bibata-cursors
];
# Bibata_Amber, Bibata_Ice, Bibata_Oil
home-manager.users.alukard.home.file.".icons/default" = {
source = "${pkgs.bibata-cursors}/share/icons/Bibata_Oil";
onChange = ''
if [[ -v DISPLAY ]] ; then
$DRY_RUN_CMD ${pkgs.xorg.xrdb}/bin/xrdb -merge $HOME/.Xresources
fi
'';
};
}