diff options
-rw-r--r-- | nix/games.nix | 7 | ||||
-rw-r--r-- | nix/hardware-configuration.nix | 6 |
2 files changed, 10 insertions, 3 deletions
diff --git a/nix/games.nix b/nix/games.nix index 74adf49..a146931 100644 --- a/nix/games.nix +++ b/nix/games.nix @@ -1,11 +1,11 @@ { config, pkgs, ... }: { environment.systemPackages = with pkgs; [ - scorched3d zeroad # hedgewars _20kly strategy + scorched3d zeroad # _20kly hedgewars strategy astromenace chromium-bsu # scrolling taisei # shmup - bastet moon-buggy n2048 # text - blackshades xonotic-glx # fps + bastet moon-buggy n2048 ttyper # text + blackshades openmw xonotic-glx # fps blobwars superTux teeworlds # platformer bonzomatic # engine extremetuxracer gl117 gltron superTuxKart # vehicle @@ -13,4 +13,5 @@ frozen-bubble pinball xbill # coffeebreak neverball # puzzle ]; + hardware.opengl.driSupport32Bit = true; } diff --git a/nix/hardware-configuration.nix b/nix/hardware-configuration.nix index f957f2b..94bf58c 100644 --- a/nix/hardware-configuration.nix +++ b/nix/hardware-configuration.nix @@ -63,6 +63,12 @@ neededForBoot = true; }; + "/home/sea/Games" = { + device = "/dev/disk/by-uuid/75646045-86cf-4b97-90ad-7acd384f8b35"; + fsType = "btrfs"; + options = [ "subvol=games" "compress-force=zstd" "noatime" ]; + }; + "/home/sea/Videos/Movies" = { device = "/dev/disk/by-uuid/75646045-86cf-4b97-90ad-7acd384f8b35"; fsType = "btrfs"; |