Misc tweaks

This commit is contained in:
Agatha Lovelace 2024-05-22 02:08:36 +02:00
parent f8db5d7e9a
commit 735fe81b03
Signed by: sorceress
GPG Key ID: 01D0B3AB10CED4F8
4 changed files with 21 additions and 2 deletions

View File

@ -56,6 +56,7 @@
just just
magic-wormhole magic-wormhole
mpv mpv
mumble
neofetch neofetch
nil nil
nitrogen nitrogen
@ -118,6 +119,9 @@
layout = lib.mkForce "eu,de(qwerty),ua,ru"; layout = lib.mkForce "eu,de(qwerty),ua,ru";
xkbOptions = "ctrl:nocaps,compose:rctrl"; xkbOptions = "ctrl:nocaps,compose:rctrl";
autoRepeatDelay = 200;
autoRepeatInterval = 50;
libinput.enable = true; libinput.enable = true;
}; };
@ -237,11 +241,21 @@
drivers = [ pkgs.hplip ]; drivers = [ pkgs.hplip ];
}; };
services.avahi = {
enable = true;
nssmdns = true;
openFirewall = true;
};
hardware.bluetooth = { hardware.bluetooth = {
enable = true; enable = true;
settings = { General = { Disable = "Headset"; }; }; settings = { General = { Disable = "Headset"; }; };
}; };
# Virtual Camera config
boot.extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback ];
boot.kernelModules = [ "v4l2loopback" ];
# Fix Wireguard NetworkManager connections # Fix Wireguard NetworkManager connections
networking.firewall.checkReversePath = "loose"; networking.firewall.checkReversePath = "loose";
} }

View File

@ -1,4 +1,4 @@
_: { {
virtualisation.oci-containers.containers = { virtualisation.oci-containers.containers = {
"nyandroid" = { "nyandroid" = {
image = "registry.gitlab.com/xenua/nyandroid:latest"; image = "registry.gitlab.com/xenua/nyandroid:latest";

View File

@ -82,7 +82,7 @@
cmd_duration = { min_time = 10000; }; cmd_duration = { min_time = 10000; };
git_branch = { git_branch = {
format = "$symbol $branch"; format = "$symbol $branch";
symbol = ""; symbol = "󰘬";
}; };
hostname = { hostname = {
ssh_only = false; ssh_only = false;

View File

@ -60,6 +60,11 @@
hardware.cpu.amd.updateMicrocode = hardware.cpu.amd.updateMicrocode =
lib.mkDefault config.hardware.enableRedistributableFirmware; lib.mkDefault config.hardware.enableRedistributableFirmware;
hardware.opengl = {
enable = true;
driSupport32Bit = true;
};
# Creating separate mono sources for Tascam US-4x4HR # Creating separate mono sources for Tascam US-4x4HR
environment.etc."pipewire/pipewire.conf.d/91-us-4x4hr.conf".text = let environment.etc."pipewire/pipewire.conf.d/91-us-4x4hr.conf".text = let
name = "US-4x4HR"; name = "US-4x4HR";