feat: linux tweaks

This commit is contained in:
winston 2023-04-02 18:59:55 +02:00
parent eff000b822
commit b7d77c7005
Signed by: winston
GPG key ID: 3786770EDBC2B481
3 changed files with 23 additions and 3 deletions

View file

@ -131,11 +131,11 @@
]
},
"locked": {
"lastModified": 1680144713,
"narHash": "sha256-cXe2cObjV08LcxbwSmGt2inN6nFCVFuRhVMFRchk8rw=",
"lastModified": 1680386606,
"narHash": "sha256-ET0OYu0mQtWCMvjZVP6nw8kX/yzfOEcrhlOn6/jK7lw=",
"owner": "nekowinston",
"repo": "nur",
"rev": "04dd7c6609e177b5f6fdb9639cee1ea02a6a4a9c",
"rev": "f3fbfe4e06a05006e6137636c1675a4747eba6ac",
"type": "github"
},
"original": {

View file

@ -353,6 +353,25 @@ in {
volnoti
xclip
];
pointerCursor = {
name = "Numix-Cursor";
package = pkgs.numix-cursor-theme;
gtk.enable = true;
size = 24;
x11.enable = true;
};
};
xresources = lib.mkIf isLinux {
properties = {
"Xft.dpi" = 192;
"Xft.autohint" = 0;
"Xft.lcdfilter" = "lcddefault";
"Xft.hintstyle" = "hintfull";
"Xft.hinting" = 1;
"Xft.antialias" = 1;
"Xft.rgba" = "rgb";
};
};
services = lib.mkIf isLinux {

View file

@ -6,6 +6,7 @@
pipewire = {
enable = true;
pulse.enable = true;
alsa.enable = true;
};
};
}