diff options
| author | seraphim <18ycm9tx@anonaddy.me> | 2026-07-29 22:09:05 +0700 |
|---|---|---|
| committer | seraphim <18ycm9tx@anonaddy.me> | 2026-07-29 22:09:05 +0700 |
| commit | 73ddb338cd7542f9569a9ab5cb0481b4f0636710 (patch) | |
| tree | 559d8c542d6e965e674a46c9451efc1cb80f203a /nixos/modules/system/hardware | |
| parent | abd12d161f0aaac458abeb139556ea5ccc1fcae8 (diff) | |
.
Diffstat (limited to 'nixos/modules/system/hardware')
| -rw-r--r-- | nixos/modules/system/hardware/default.nix | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/nixos/modules/system/hardware/default.nix b/nixos/modules/system/hardware/default.nix new file mode 100644 index 0000000..bad717c --- /dev/null +++ b/nixos/modules/system/hardware/default.nix @@ -0,0 +1,16 @@ +{ config, pkgs, ... }: + +{ + fileSystems."/mnt/giga" = { + device = "/dev/disk/by-uuid/bfed3a37-05e1-465b-a4b7-d74cd31bf937"; + fsType = "ext4"; + options = [ "defaults" "user" "rw" ]; + }; + + hardware.graphics = { + enable = true; + enable32Bit = true; + }; + + services.xserver.videoDrivers = [ "nvidia" ]; +}
\ No newline at end of file |
