Updated to 24.05

This commit is contained in:
2024-06-02 12:10:28 +02:00
parent 89d96c72f3
commit 7e564fb99c
10 changed files with 22 additions and 33 deletions

View File

@@ -2,6 +2,7 @@
{
programs.rofi = {
enable = true;
package = pkgs.rofi-wayland;
theme = let
inherit (config.lib.formats.rasi) mkLiteral;
in {

View File

@@ -29,25 +29,10 @@
"on-scroll-down" = "hyprctl dispatch workspace e-1";
"on-click" = "activate";
"persistent-workspaces" = if hostName == "xv-laptop" then {
"1" = [];
"2" = [];
"3" = [];
"4" = [];
"5" = [];
"6" = [];
"7" = [];
"8" = [];
"*" = 8;
} else {
"1" = [ "DP-2" ];
"2" = [ "DP-2" ];
"3" = [ "DP-2" ];
"4" = [ "DP-2" ];
"5" = [ "DP-2" ];
"6" = [ "HDMI-A-1" ];
"7" = [ "HDMI-A-1" ];
"8" = [ "HDMI-A-1" ];
"9" = [ "HDMI-A-1" ];
"10" = [ "HDMI-A-1" ];
"DP-2" = [ 1 2 3 4 5 ];
"HDMI-A-1" = [ 6 7 8 9 10 ];
};
"format-icons" = {
"default" = "";

View File

@@ -4,6 +4,9 @@
programs.alacritty = {
enable = true;
settings = {
font = {
normal = { family = "DejaVuSansM Nerd Font"; style = "Regular"; };
};
window = {
opacity = 0.8;
padding = { x = 10; y = 10; };

View File

@@ -19,7 +19,7 @@ in
qt = {
enable = true;
platformTheme = "gtk";
platformTheme.name = "gtk";
style = {
name = "gtk2";
package = pkgs.qt6Packages.qt6gtk2;