Compare commits
2 commits
ba699a1209
...
f56177f3eb
Author | SHA1 | Date | |
---|---|---|---|
f56177f3eb | |||
9674ca8514 |
2 changed files with 15 additions and 4 deletions
|
@ -50,9 +50,20 @@ in
|
||||||
# To prevent `Unit dconf.service not found.` after theming GTK in HM
|
# To prevent `Unit dconf.service not found.` after theming GTK in HM
|
||||||
programs.dconf.enable = true;
|
programs.dconf.enable = true;
|
||||||
|
|
||||||
sound.enable = true;
|
#sound.enable = true;
|
||||||
hardware.pulseaudio.enable = true;
|
#hardware.pulseaudio.enable = true;
|
||||||
nixpkgs.config.pulseaudio = true;
|
#nixpkgs.config.pulseaudio = true;
|
||||||
|
|
||||||
|
# rtkit is optional but recommended
|
||||||
|
security.rtkit.enable = true;
|
||||||
|
services.pipewire = {
|
||||||
|
enable = true;
|
||||||
|
alsa.enable = true;
|
||||||
|
alsa.support32Bit = true;
|
||||||
|
pulse.enable = true;
|
||||||
|
# If you want to use JACK applications, uncomment this
|
||||||
|
#jack.enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
fonts = {
|
fonts = {
|
||||||
enableDefaultFonts = false;
|
enableDefaultFonts = false;
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
POWER_OFF=" Power Off"
|
POWER_OFF=" Power Off"
|
||||||
REBOOT=" Reboot"
|
REBOOT=" Reboot"
|
||||||
SUSPEND=" Suspend"
|
SUSPEND=" Suspend"
|
||||||
LOG_OUT=" Log out"
|
LOG_OUT=" Log out"
|
||||||
|
|
||||||
chosen=`printf "%s\n%s\n%s\n%s" "$POWER_OFF" "$REBOOT" "$SUSPEND" "$LOG_OUT" | rofi -dmenu -i -p ""`
|
chosen=`printf "%s\n%s\n%s\n%s" "$POWER_OFF" "$REBOOT" "$SUSPEND" "$LOG_OUT" | rofi -dmenu -i -p ""`
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue