29 lines
1 KiB
Nix
29 lines
1 KiB
Nix
{ specialArgs, inputs, config, pkgs, lib, ... }:
|
|
|
|
{
|
|
home = {
|
|
pointerCursor = {
|
|
size = 24;
|
|
gtk.enable = true;
|
|
x11.enable = true;
|
|
name = "breeze_cursors";
|
|
package = pkgs.breeze-icons;
|
|
};
|
|
file = {
|
|
".config/wezterm/wezterm.lua".source =
|
|
"${inputs.dotfiles}/.config/wezterm/wezterm.lua";
|
|
".config/MangoHud/MangoHud.conf".source =
|
|
"${inputs.dotfiles}/.config/MangoHud/MangoHud.conf";
|
|
".config/solvespace/settings.json".source =
|
|
"${inputs.dotfiles}/.config/solvespace/settings.json";
|
|
".local/share/color-schemes/CatppuccinLatte.colors".source =
|
|
"${inputs.dotfiles}/.local/share/color-schemes/CatppuccinLatte.colors";
|
|
".local/share/color-schemes/CatppuccinMocha.colors".source =
|
|
"${inputs.dotfiles}/.local/share/color-schemes/CatppuccinMocha.colors";
|
|
# Autostart programs
|
|
".config/autostart/koi.desktop".source =
|
|
config.lib.file.mkOutOfStoreSymlink
|
|
"/var/run/current-system/sw/share/applications/koi.desktop";
|
|
};
|
|
};
|
|
}
|