var: update desktop to kde

This commit is contained in:
Leonardo Eugênio 2026-06-08 20:51:03 -03:00
parent ae6b051960
commit 956977f6c8
4 changed files with 11 additions and 3 deletions

View file

@ -13,8 +13,14 @@
programs.steam.extraPackages =
config.fonts.packages
++ (with pkgs; [
# sway cursors
capitaine-cursors
bibata-cursors
# gnome cursors
adwaita-icon-theme
# kde cursors
kdePackages.breeze
mangohud
xdg-user-dirs
gamescope

View file

@ -52,7 +52,7 @@
];
my = import ./variables.nix // {
sway.enable = true;
# sway.enable = true;
pass.enable = true;
fish.enable = true;
};

View file

@ -118,7 +118,9 @@ in
};
# setup cursor based on home.pointerCursor
seat."*" = {
xcursor_theme = "${config.home.pointerCursor.name} ${toString config.home.pointerCursor.size}";
xcursor_theme = lib.mkIf (
config.home.pointerCursor != null
) "${config.home.pointerCursor.name} ${toString config.home.pointerCursor.size}";
hide_cursor = "when-typing enable";
};
};

View file

@ -115,7 +115,7 @@ rec {
};
dmenu = "bmenu";
desktop = "sway";
desktop = "kde";
browser = "firefox-devedition";
editor = "kakoune";
}