diff options
| author | Kleidi Bujari <mail@4kb.net> | 2025-04-02 22:11:15 -0400 |
|---|---|---|
| committer | Kleidi Bujari <mail@4kb.net> | 2025-04-02 22:11:15 -0400 |
| commit | b619ff9dd42eaa62569c8297142f0e4c719d40d2 (patch) | |
| tree | de17d4bd6a69f50b95644409fed5f146b2e8f528 /machines/t1/default.nix | |
| parent | b1738c105de3bc0ba7cd27f68c9eb146439a0964 (diff) | |
| download | depot-b619ff9dd42eaa62569c8297142f0e4c719d40d2.tar.gz depot-b619ff9dd42eaa62569c8297142f0e4c719d40d2.tar.bz2 depot-b619ff9dd42eaa62569c8297142f0e4c719d40d2.zip | |
april updates
Diffstat (limited to 'machines/t1/default.nix')
| -rw-r--r-- | machines/t1/default.nix | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/machines/t1/default.nix b/machines/t1/default.nix index 68bc7b9..f565fc6 100644 --- a/machines/t1/default.nix +++ b/machines/t1/default.nix @@ -31,26 +31,34 @@ in }; }; - networking = { - hostName = "t1"; - }; + networking.hostName = "t1"; programs = { steam.enable = true; + steam.extraCompatPackages = [ pkgs.proton-ge-bin ]; corectrl = { enable = true; gpuOverclock.enable = true; }; }; - fileSystems."/mnt/media" = { - device = "radon:/radon/media"; - fsType = "nfs"; - options = [ "noauto" "x-systemd.automount" "x-systemd.idle-timeout=600" ]; + fileSystems = { + "/mnt/media" = { + device = "radon:/radon/media"; + fsType = "nfs"; + options = [ "noauto" "x-systemd.automount" "x-systemd.idle-timeout=600" ]; + }; + + "/mnt/gammix" = { + device = "/dev/disk/by-uuid/bbbb4579-fac9-412e-a831-3034f7d27e04"; + fsType = "ext4"; + options = [ "users" "nofail" "noatime" ]; + }; }; services.udev.packages = [ pkgs.ddcutil ]; environment.shellAliases.b = "${pkgs.ddcutil}/bin/ddcutil setvcp 10"; + boot.kernelModules = [ "i2c-dev" ]; environment.systemPackages = with pkgs; [ ddcutil |
