var: update desktop to kde
This commit is contained in:
parent
ae6b051960
commit
956977f6c8
4 changed files with 11 additions and 3 deletions
|
|
@ -13,8 +13,14 @@
|
||||||
programs.steam.extraPackages =
|
programs.steam.extraPackages =
|
||||||
config.fonts.packages
|
config.fonts.packages
|
||||||
++ (with pkgs; [
|
++ (with pkgs; [
|
||||||
|
# sway cursors
|
||||||
capitaine-cursors
|
capitaine-cursors
|
||||||
bibata-cursors
|
bibata-cursors
|
||||||
|
# gnome cursors
|
||||||
|
adwaita-icon-theme
|
||||||
|
# kde cursors
|
||||||
|
kdePackages.breeze
|
||||||
|
|
||||||
mangohud
|
mangohud
|
||||||
xdg-user-dirs
|
xdg-user-dirs
|
||||||
gamescope
|
gamescope
|
||||||
|
|
|
||||||
|
|
@ -52,7 +52,7 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
my = import ./variables.nix // {
|
my = import ./variables.nix // {
|
||||||
sway.enable = true;
|
# sway.enable = true;
|
||||||
pass.enable = true;
|
pass.enable = true;
|
||||||
fish.enable = true;
|
fish.enable = true;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -118,7 +118,9 @@ in
|
||||||
};
|
};
|
||||||
# setup cursor based on home.pointerCursor
|
# setup cursor based on home.pointerCursor
|
||||||
seat."*" = {
|
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";
|
hide_cursor = "when-typing enable";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -115,7 +115,7 @@ rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
dmenu = "bmenu";
|
dmenu = "bmenu";
|
||||||
desktop = "sway";
|
desktop = "kde";
|
||||||
browser = "firefox-devedition";
|
browser = "firefox-devedition";
|
||||||
editor = "kakoune";
|
editor = "kakoune";
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue