summaryrefslogtreecommitdiff
path: root/nixos/modules/system/hardware
diff options
context:
space:
mode:
authorseraphim <18ycm9tx@anonaddy.me>2026-08-16 21:55:33 +0700
committerseraphim <18ycm9tx@anonaddy.me>2026-08-16 21:55:33 +0700
commit7dd785b1005aec643004c06eaa7af690b00cb48f (patch)
treebd8700ef4dfb8c0a1315f4eb41784d1d4ba43001 /nixos/modules/system/hardware
parent100094fe8b9398c083fa6351925a00f5b3a9d36a (diff)
.
Diffstat (limited to 'nixos/modules/system/hardware')
-rw-r--r--nixos/modules/system/hardware/default.nix20
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" ];
-}