Use a more consistent cursor setting
This commit is contained in:
parent
4b473b6a71
commit
3e8aa1abcf
|
@ -1,33 +1,33 @@
|
|||
{ pkgs, config, lib, ... } :
|
||||
{ pkgs, config, lib, ... }:
|
||||
|
||||
{
|
||||
programs.firefox = {
|
||||
enable = true;
|
||||
package = pkgs.firefox.override {
|
||||
cfg = {
|
||||
# Tridactyl native connector
|
||||
enableTridactylNative = true;
|
||||
};
|
||||
};
|
||||
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
|
||||
bitwarden
|
||||
grammarly
|
||||
https-everywhere
|
||||
multi-account-containers
|
||||
octotree
|
||||
reddit-enhancement-suite
|
||||
refined-github
|
||||
simple-tab-groups
|
||||
sponsorblock
|
||||
tridactyl
|
||||
ublock-origin
|
||||
web-scrobbler
|
||||
];
|
||||
|
||||
profiles.nki.id = 0;
|
||||
profiles.nki.isDefault = true;
|
||||
profiles.nki.settings = {
|
||||
"browser.search.region" = "CA";
|
||||
};
|
||||
programs.firefox = {
|
||||
enable = true;
|
||||
package = pkgs.firefox-wayland.override {
|
||||
cfg = {
|
||||
# Tridactyl native connector
|
||||
enableTridactylNative = true;
|
||||
};
|
||||
};
|
||||
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
|
||||
bitwarden
|
||||
grammarly
|
||||
https-everywhere
|
||||
multi-account-containers
|
||||
octotree
|
||||
reddit-enhancement-suite
|
||||
refined-github
|
||||
simple-tab-groups
|
||||
sponsorblock
|
||||
tridactyl
|
||||
ublock-origin
|
||||
web-scrobbler
|
||||
];
|
||||
|
||||
profiles.nki.id = 0;
|
||||
profiles.nki.isDefault = true;
|
||||
profiles.nki.settings = {
|
||||
"browser.search.region" = "CA";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -40,8 +40,8 @@ in
|
|||
# Cursor
|
||||
xsession.pointerCursor = {
|
||||
package = pkgs.numix-cursor-theme;
|
||||
name = "Numix-Cursor-Light";
|
||||
size = 32;
|
||||
name = "Numix-Cursor";
|
||||
size = 24;
|
||||
};
|
||||
|
||||
# MIME set ups
|
||||
|
|
|
@ -79,6 +79,11 @@ in
|
|||
# Wallpaper
|
||||
output."*".bg = if cfg.wallpaper == "" then "#000000 solid_color" else "${cfg.wallpaper} fill";
|
||||
|
||||
### Seats
|
||||
#
|
||||
# Cursor
|
||||
seat."*".xcursor_theme = "${config.xsession.pointerCursor.name} ${toString config.xsession.pointerCursor.size}";
|
||||
|
||||
### Programs
|
||||
#
|
||||
# Terminal
|
||||
|
|
Loading…
Reference in a new issue