This commit is contained in:
Sridhar Ratnakumar 2021-10-31 11:11:34 -04:00
parent 824d086586
commit 6fdba340ac
5 changed files with 16 additions and 7 deletions

View file

@ -22,7 +22,6 @@
environment.systemPackages = with pkgs; [
acpi
mpv
pulsemixer
xorg.xmessage
xclip
];

View file

@ -2,9 +2,9 @@
# Apps I use on desktops and laptops
environment.systemPackages = with pkgs; [
brave
vscode
vlc
steam
qbittorrent
# X stuff
@ -15,8 +15,4 @@
arandr
autorandr
];
# https://github.com/NixOS/nixpkgs/issues/47932#issuecomment-447508411
hardware.opengl.driSupport32Bit = true;
}

View file

@ -0,0 +1,9 @@
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
steam
];
# https://github.com/NixOS/nixpkgs/issues/47932#issuecomment-447508411
hardware.opengl.driSupport32Bit = true;
}

View file

@ -27,6 +27,7 @@ rec {
fzf
aria2
wol
pulsemixer
# ^ easy to forget these; write SRS?
hledger

View file

@ -20,7 +20,11 @@
device = "/dev/disk/by-uuid/B3E6-2C4C";
fsType = "vfat";
};
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
# X1C7 throttling is already shit, so put this in performance mode.
# See also: https://discourse.nixos.org/t/how-to-switch-cpu-governor-on-battery-power/8446/5
powerManagement.cpuFreqGovernor = lib.mkDefault "performance";
# high-resolution display
hardware.video.hidpi.enable = lib.mkDefault true;
services.xserver.dpi = 170;