Compare commits
No commits in common. "761dfedf1b61b86265f1fcda6150bb4800e070a1" and "16d47d521476a8380ea17a229b8fa938c64cbb25" have entirely different histories.
761dfedf1b
...
16d47d5214
2 changed files with 2 additions and 22 deletions
|
|
@ -110,17 +110,6 @@
|
|||
environment.sessionVariables = {
|
||||
STEAM_FORCE_DESKTOPUI_SCALING = "2";
|
||||
};
|
||||
home-manager.users.toast = {
|
||||
# Steam's hidpi support is bugged so it needds to be hardcoded
|
||||
# This bypasses that
|
||||
xdg.desktopEntries = {
|
||||
steam-noScaling = {
|
||||
name = "Steam (No Scaling)";
|
||||
exec = "env STEAM_FORCE_DESKTOPUI_SCALING=0 steam %U";
|
||||
icon = "steam";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# Enable sound.
|
||||
# sound.enable = true;
|
||||
|
|
|
|||
|
|
@ -19,10 +19,7 @@ in {
|
|||
boot.kernelModules = ["kvm-amd"];
|
||||
boot.extraModulePackages = [];
|
||||
|
||||
boot.initrd.luks.devices = {
|
||||
"SSD".device = "/dev/disk/by-label/wm2-enc";
|
||||
"swap".device = "/dev/disk/by-label/wm2-swap";
|
||||
};
|
||||
boot.initrd.luks.devices."SSD".device = "/dev/disk/by-label/wm2-enc";
|
||||
|
||||
fileSystems = {
|
||||
"efi_boot_partition" = {
|
||||
|
|
@ -68,13 +65,7 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
swapDevices = [
|
||||
{
|
||||
device = "/dev/mapper/swap";
|
||||
# only want to use the swap partition for hibernating
|
||||
priority = 0;
|
||||
}
|
||||
];
|
||||
swapDevices = [];
|
||||
|
||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||
hardware = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue