diff options
| author | seraphim <18ycm9tx@anonaddy.me> | 2026-08-16 21:55:33 +0700 |
|---|---|---|
| committer | seraphim <18ycm9tx@anonaddy.me> | 2026-08-16 21:55:33 +0700 |
| commit | 7dd785b1005aec643004c06eaa7af690b00cb48f (patch) | |
| tree | bd8700ef4dfb8c0a1315f4eb41784d1d4ba43001 /nixos/modules/system/hardware | |
| parent | 100094fe8b9398c083fa6351925a00f5b3a9d36a (diff) | |
.
Diffstat (limited to 'nixos/modules/system/hardware')
| -rw-r--r-- | nixos/modules/system/hardware/default.nix | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/nixos/modules/system/hardware/default.nix b/nixos/modules/system/hardware/default.nix deleted file mode 100644 index d81b60e..0000000 --- a/nixos/modules/system/hardware/default.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ config, pkgs, ... }: - -{ - # Secondary data drive, mounted as a regular user (rw, no root needed). - fileSystems."/mnt/giga" = { - device = "/dev/disk/by-uuid/bfed3a37-05e1-465b-a4b7-d74cd31bf937"; - fsType = "ext4"; - options = [ "defaults" "user" "rw" ]; - }; - - # Mesa graphics stack (needed even on NVIDIA for software fallbacks / GL). - hardware.graphics = { - enable = true; - enable32Bit = true; - }; - - # The actual NVIDIA driver is configured in modules/features/nvidia; this - # just tells the X server legacy path to prefer the nvidia driver name. - services.xserver.videoDrivers = [ "nvidia" ]; -} |
