This commit is contained in:
2024-04-02 00:13:41 +01:00
parent 3f9eed307f
commit fb6a7851d8
2 changed files with 21 additions and 0 deletions
+1
View File
@@ -32,6 +32,7 @@ in
env = [ env = [
"HYPRCURSOR_THEME,${config.gtk.cursorTheme.name}" "HYPRCURSOR_THEME,${config.gtk.cursorTheme.name}"
"HYPRCURSOR_SIZE,24" "HYPRCURSOR_SIZE,24"
"WLR_NO_HARDWARE_CURSORS,1"
]; ];
input = { input = {
kb_layout = "us"; kb_layout = "us";
+20
View File
@@ -0,0 +1,20 @@
{
inputs,
lib,
config,
pkgs,
...
}:
let
home = builtins.getEnv "HOME";
in
{
programs.waybar = {
enable = true;
systemd.enable = true;
style = ''
${builtins.readFile ../style.css}
'';
};
}