normal cursor and brave darkmode

This commit is contained in:
2025-09-20 19:21:24 +02:00
parent 6c4c3d54aa
commit 250caeaf32
4 changed files with 22 additions and 6 deletions

6
flake.lock generated
View File

@@ -23,11 +23,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1758070117,
"narHash": "sha256-uLwwHFCZnT1c3N3biVe/0hCkag2GSrf9+M56+Okf+WY=",
"lastModified": 1758216857,
"narHash": "sha256-h1BW2y7CY4LI9w61R02wPaOYfmYo82FyRqHIwukQ6SY=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "e9b7f2ff62b35f711568b1f0866243c7c302028d",
"rev": "d2ed99647a4b195f0bcc440f76edfa10aeb3b743",
"type": "github"
},
"original": {

View File

@@ -11,9 +11,7 @@
};
outputs = inputs@{ self, nixpkgs, # catppuccin,
home-manager, ... }: {
outputs = inputs@{ self, nixpkgs, home-manager, ... }: {
nixosConfigurations = {
segfault-machine = nixpkgs.lib.nixosSystem {

View File

@@ -2,6 +2,11 @@
programs.brave = {
enable = true;
commandLineArgs = [
"--force-dark-mode"
"--enable-features=WebContentsForceDark"
];
extensions = [
# Catppuccin for GitHub File Explorer Icons
{ id = "lnjaiaapbakfhlbjenjkhffcdpoompki"; }

View File

@@ -1,4 +1,13 @@
{ pkgs, ... }:
{
home.pointerCursor = {
name = "Vanilla-DMZ";
package = pkgs.vanilla-dmz;
size = 24;
gtk.enable = true;
x11.enable = true;
};
wayland.windowManager.hyprland = {
enable = true;
@@ -17,7 +26,11 @@
"nextcloud"
];
env = [
"HYPRCURSOR_THEME,Vanilla-DMZ"
"HYPRCURSOR_SIZE,24"
"XCURSOR_THEME,Vanilla-DMZ"
"GDK_SCALE,2"
"XCURSOR_SIZE,32"
];