Initial release

This commit is contained in:
Lauren Lagarde 2025-03-03 23:07:58 -06:00
commit 8fbb25bbac
53 changed files with 1648 additions and 0 deletions

25
tweaks/bluetooth.nix Normal file
View file

@ -0,0 +1,25 @@
{ pkgs, lib, ... }: {
hardware.enableRedistributableFirmware = true;
services.blueman.enable = true;
hardware.bluetooth = {
enable = true;
settings.General = {
Enable = "Source,Sink,Media,Socket";
Experimental = true;
};
};
# PipeWire appears to have marginally less shitty bluetooth support
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
audio.enable = true;
pulse.enable = true;
alsa.enable = true;
alsa.support32Bit = true;
jack.enable = true;
};
}

View file

@ -0,0 +1,3 @@
{ ... }: {
networking.firewall.enable = false;
}

View file

@ -0,0 +1,12 @@
{ config, lib, pkgs, ... }: {
services.getty.autologinUser = lib.mkForce null;
users.groups.nixos = {};
users.users.nixos.group = "nixos";
users.users.nixos.isSystemUser = lib.mkForce true;
users.users.nixos.isNormalUser = lib.mkForce false;
users.users.nixos.initialHashedPassword = lib.mkForce "!";
# Disable root as well
users.users.root.initialHashedPassword = lib.mkForce "!";
}

View file

@ -0,0 +1,6 @@
{ ... }: {
# Fix screen tearing on Intel iGPU
# TODO: I think this is still broken
services.picom.enable = true;
services.picom.vSync = true;
}

3
tweaks/powersave.nix Normal file
View file

@ -0,0 +1,3 @@
{ ... }: {
powerManagement.cpuFreqGovernor = "powersave";
}

View file

@ -0,0 +1,4 @@
{ ... }: {
# I...this is dumb...
services.resolved.extraConfig = "ResolveUnicastSingleLabel=yes";
}

16
tweaks/zfs.nix Normal file
View file

@ -0,0 +1,16 @@
{ config, ... }: {
boot.supportedFilesystems = [ "zfs" ];
boot.zfs.devNodes = "/dev/disk/by-id/";
services.zfs.autoScrub.enable = true;
services.zfs.autoScrub.interval = "weekly";
boot.extraModprobeConfig = ''
# Under low-write conditions, wait up to 30 seconds before committing data to disk
options zfs zfs_txg_timeout=30
# Stupid silent data corruption bug (https://github.com/openzfs/zfs/issues/15933)
options zfs zfs_bclone_enabled=0
options zfs zfs_dmu_offset_next_sync=0
'';
}

7
tweaks/zram.nix Normal file
View file

@ -0,0 +1,7 @@
{ ... }: {
zramSwap = {
enable = true;
algorithm = "zstd";
memoryPercent = 200;
};
}