This commit is contained in:
Grigory Shipunov 2022-06-08 18:47:49 +02:00
parent 3a40a3af28
commit 3924624e75
Signed by: 0xa
GPG key ID: 91FA5E5BF9AA901C
5 changed files with 38 additions and 24 deletions

View file

@ -27,7 +27,7 @@
"DefaultNotificationSetting" = 2;
"BackgroundModeEnabled" = false;
"DefaultSearchProviderEnabled" = true;
"DefaultSearchProviderSearchURL" = "https://duckduckgo.com/?q={searchTerms}";
"DefaultSearchProviderSearchURL" = "https://google.com/?q={searchTerms}";
"SearchSuggestEnable" = false;
};
};

View file

@ -1,23 +1,26 @@
{ pkgs, lib, ... }:
{
environment.systemPackages = with pkgs; [ nfs-utils ];
services.rpcbind.enable = true;
systemd.mounts = {
systemd.mounts = [{
type = "nfs";
mountConfig = {
Options = "noatime";
};
what = "10.13.37.5:/";
where = "/mnt/dvb";
};
}];
systemd.automounts = {
systemd.automounts = [{
wantedBy = [ "multi-user.target" ];
requires = [ "wg-quick-wg-dvb.service" ];
automountConfig= {
TimeoutIdleSec = "600";
};
where = "/mnt/dvb";
};
}];
}

View file

@ -11,16 +11,15 @@
firefox-wayland
dino
alacritty
kitty
xclip
flameshot
wl-clipboard
brightnessctl
pulseaudio-ctl
feh
mpv
zathura
pulsemixer
pulseaudioFull
screen-message
cmus
gtk-engine-murrine
@ -43,7 +42,6 @@
monoid
spleen
terminus_font
iosevka
creep
corefonts
dina-font
@ -76,11 +74,18 @@
};
# Enable sound.
sound.enable = true;
security.rtkit.enable = true;
hardware.pulseaudio = {
zeroconf.discovery.enable = true;
extraClientConf = ''
autospawn=yes
'';
};
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
@ -128,4 +133,5 @@
programs.bash.vteIntegration = true;
services.upower.enable = true;
qt5.platformTheme = "gnome";
}