Fixed cursor and font size

This commit is contained in:
2024-09-05 09:11:43 +02:00
parent afdde01324
commit 5f80e76da4

View File

@@ -15,6 +15,15 @@
options = "--delete-older-than 1w"; options = "--delete-older-than 1w";
}; };
# Remove old gtkrc file, otherwise it will not work
system.userActivationScripts = {
removeConflictingFiles = {
text = ''
rm -f /home/r3ddy/.gtkrc-2.0.backup
'';
};
};
boot.initrd.luks.devices."luks-332a07bd-65fb-4d91-91ba-fe3f594063b1".device = "/dev/disk/by-uuid/332a07bd-65fb-4d91-91ba-fe3f594063b1"; boot.initrd.luks.devices."luks-332a07bd-65fb-4d91-91ba-fe3f594063b1".device = "/dev/disk/by-uuid/332a07bd-65fb-4d91-91ba-fe3f594063b1";
networking.hostName = "nixos"; # Define your hostname. networking.hostName = "nixos"; # Define your hostname.
@@ -103,14 +112,17 @@
cmake cmake
zoxide zoxide
appimage-run appimage-run
mangohud
prismlauncher
vim # The only and one great editor vim # The only and one great editor
neovim # The only and one great editor improved even further neovim # The only and one great editor improved even further
# Video card # Video card
vulkan-tools vulkan-tools
# Gaming
prismlauncher
mangohud
# Desktop utils # Desktop utils
xdg-desktop-portal-kde xdg-desktop-portal-kde
xdg-desktop-portal-gtk xdg-desktop-portal-gtk
@@ -128,6 +140,7 @@
stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml"; stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml";
stylix.cursor.package = pkgs.bibata-cursors; stylix.cursor.package = pkgs.bibata-cursors;
stylix.cursor.name = "Bibata-Modern-Classic"; stylix.cursor.name = "Bibata-Modern-Classic";
stylix.cursor.size = 24;
stylix.fonts = { stylix.fonts = {
monospace = { monospace = {
package = pkgs.nerdfonts.override { fonts = [ "JetBrainsMono" ]; }; package = pkgs.nerdfonts.override { fonts = [ "JetBrainsMono" ]; };
@@ -143,6 +156,9 @@
}; };
sizes = { sizes = {
terminal = 16; terminal = 16;
desktop = 10;
popups = 10;
applications = 10;
}; };
}; };
stylix.polarity = "dark"; stylix.polarity = "dark";