make 21.05 work
This commit is contained in:
parent
ce3cc61ad8
commit
0cd4c7d5f0
|
@ -15,6 +15,6 @@
|
||||||
|
|
||||||
programs.home-manager = {
|
programs.home-manager = {
|
||||||
enable = true;
|
enable = true;
|
||||||
path = "https://github.com/rycee/home-manager/archive/release-20.09.tar.gz";
|
path = "https://github.com/rycee/home-manager/archive/release-21.05.tar.gz";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -58,11 +58,11 @@ in {
|
||||||
dolphin
|
dolphin
|
||||||
konsole
|
konsole
|
||||||
krename
|
krename
|
||||||
kdeApplications.dolphin-plugins
|
#kdeApplications.dolphin-plugins
|
||||||
ffmpegthumbs
|
ffmpegthumbs
|
||||||
#kdeApplications.kdegraphics-thumbnailers
|
#kdeApplications.kdegraphics-thumbnailers
|
||||||
kdeFrameworks.kded
|
#kdeFrameworks.kded
|
||||||
kdeFrameworks.kio
|
#kdeFrameworks.kio
|
||||||
#kdeApplications.kio-extras
|
#kdeApplications.kio-extras
|
||||||
|
|
||||||
#dan.rank_photos
|
#dan.rank_photos
|
||||||
|
@ -118,7 +118,6 @@ in {
|
||||||
# indicator = true;
|
# indicator = true;
|
||||||
# };
|
# };
|
||||||
|
|
||||||
|
|
||||||
services.gpg-agent = {
|
services.gpg-agent = {
|
||||||
enable = true;
|
enable = true;
|
||||||
defaultCacheTtl = 1800;
|
defaultCacheTtl = 1800;
|
||||||
|
|
|
@ -52,10 +52,10 @@ in
|
||||||
"${modifier}+Tab" = "workspace next";
|
"${modifier}+Tab" = "workspace next";
|
||||||
"${modifier}+Shift+Tab" = "workspace prev";
|
"${modifier}+Shift+Tab" = "workspace prev";
|
||||||
|
|
||||||
"XF86AudioRaiseVolume" = "exec --no-startup-id pactl set-sink-volume 0 +5%";
|
"XF86AudioRaiseVolume" = "exec --no-startup-id ${pkgs.pulseaudio}/bin/pactl set-sink-volume 0 +5%";
|
||||||
"XF86AudioLowerVolume" = "exec --no-startup-id pactl set-sink-volume 0 -5%";
|
"XF86AudioLowerVolume" = "exec --no-startup-id ${pkgs.pulseaudio}/bin/pactl set-sink-volume 0 -5%";
|
||||||
"XF86AudioMute" = "exec --no-startup-id pactl set-sink-mute 0 toggle";
|
"XF86AudioMute" = "exec --no-startup-id ${pkgs.pulseaudio}/bin/pactl set-sink-mute 0 toggle";
|
||||||
"XF86AudioMicMute" = "exec --no-startup-id pactl set-source-mute 1 toggle";
|
"XF86AudioMicMute" = "exec --no-startup-id ${pkgs.pulseaudio}/bin/pactl set-source-mute 1 toggle";
|
||||||
|
|
||||||
"XF86MonBrightnessUp" = "exec --no-startup-id brightnessctl set +5%";
|
"XF86MonBrightnessUp" = "exec --no-startup-id brightnessctl set +5%";
|
||||||
"XF86MonBrightnessDown" = "exec --no-startup-id brightnessctl set 5%-";
|
"XF86MonBrightnessDown" = "exec --no-startup-id brightnessctl set 5%-";
|
||||||
|
@ -95,7 +95,7 @@ in
|
||||||
|
|
||||||
|
|
||||||
gtk = {
|
gtk = {
|
||||||
enable = true;
|
enable = false;
|
||||||
theme = {
|
theme = {
|
||||||
package = pkgs.breeze-gtk;
|
package = pkgs.breeze-gtk;
|
||||||
name = "Breeze";
|
name = "Breeze";
|
||||||
|
|
Loading…
Reference in New Issue