[m] Cleanup nixos config

This commit is contained in:
soraefir
2023-11-28 03:39:49 +01:00
parent 5d730f8071
commit efa2a5c0be
7 changed files with 25 additions and 30 deletions

View File

@ -10,7 +10,7 @@ in {
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
wireplumber.enable = true;
# wireplumber.enable = true;
};
environment.systemPackages = with pkgs; [ easyeffects ];

View File

@ -3,7 +3,7 @@
fonts = {
enableDefaultPackages = false;
fontDir.enable = true;
#fonts = with pkgs; [
packages = with pkgs; [
ibm-plex
lmmath
@ -25,7 +25,6 @@
};
hinting.style = "medium";
# hinting.style = "hintfull";
};
};
}

View File

@ -1,4 +1,4 @@
{ ... }: {
services.fwupd.enable = true;
services.fwupd.enable = false; # Note: run inside a nix-shell
hardware.enableAllFirmware = true;
}

View File

@ -1,6 +1,5 @@
{ pkgs, ... }: {
services.fstrim.enable = true;
services.gvfs.enable = true;
services.fstrim.enable = true; # Improves SSD life
environment.systemPackages = with pkgs; [ gvfs nfs-utils ];
}

View File

@ -1,7 +1,4 @@
{ pkgs, ... }: {
hardware.bluetooth.enable = true;
hardware.brillo.enable = true;
services.blueman.enable = true;
environment.systemPackages = with pkgs; [ bluez bluez-tools ];
}