YOLO
This commit is contained in:
parent
3a40a3af28
commit
3924624e75
5 changed files with 38 additions and 24 deletions
|
@ -27,7 +27,7 @@
|
|||
"DefaultNotificationSetting" = 2;
|
||||
"BackgroundModeEnabled" = false;
|
||||
"DefaultSearchProviderEnabled" = true;
|
||||
"DefaultSearchProviderSearchURL" = "https://duckduckgo.com/?q={searchTerms}";
|
||||
"DefaultSearchProviderSearchURL" = "https://google.com/?q={searchTerms}";
|
||||
"SearchSuggestEnable" = false;
|
||||
};
|
||||
};
|
||||
|
|
|
@ -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";
|
||||
};
|
||||
}];
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -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";
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue