Added new configs and hyprvirtmon.py

This commit is contained in:
2025-08-17 14:22:04 -04:00
parent 1752303a00
commit 292be7ac05
18 changed files with 1661 additions and 446 deletions

View File

@@ -26,7 +26,12 @@
options = [ "fmask=0077" "dmask=0077" ];
};
swapDevices = [ ];
swapDevices = [
{
device = "/var/lib/swapfile";
size = 16 * 1024; # 16 GiB
}
];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's
@@ -38,4 +43,36 @@
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
# hardware.opengl.enable = true;
# hardware.graphics.enable = true;
hardware.graphics = {
enable = true;
enable32Bit = true;
extraPackages = with pkgs; [
# libva-intel-driver
libva-utils
intel-media-driver # Uncomment if you want to use the Intel Media Driver
vaapiIntel
vpl-gpu-rt
libglvnd
mesa
];
extraPackages32 = with pkgs.pkgsi686Linux; [
# libva-intel-driver
libglvnd
];
};
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
settings = {
General = {
Experimental = true;
FastConnectable = true;
};
Policy = {
AutoEnable = true;
};
};
};
}