aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/caladan/hardware-configuration.nix
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2025-12-18 17:03:44 -0800
committerMark Nipper <nipsy@bitgnome.net>2025-12-18 17:03:44 -0800
commit5433fa9289bfa2c30ff0f27ee4ee95c588e0dfde (patch)
tree7185d266dfcdfed781fe97d55987ad7dc524302d /hosts/caladan/hardware-configuration.nix
parent1c8b3d4c71b5bbc4b00f65772ca3a6a762565937 (diff)
downloadnix-5433fa9289bfa2c30ff0f27ee4ee95c588e0dfde.tar
nix-5433fa9289bfa2c30ff0f27ee4ee95c588e0dfde.tar.gz
nix-5433fa9289bfa2c30ff0f27ee4ee95c588e0dfde.tar.bz2
nix-5433fa9289bfa2c30ff0f27ee4ee95c588e0dfde.tar.lz
nix-5433fa9289bfa2c30ff0f27ee4ee95c588e0dfde.tar.xz
nix-5433fa9289bfa2c30ff0f27ee4ee95c588e0dfde.tar.zst
nix-5433fa9289bfa2c30ff0f27ee4ee95c588e0dfde.zip
Add user mount @caladanHEADmaster
Diffstat (limited to 'hosts/caladan/hardware-configuration.nix')
-rw-r--r--hosts/caladan/hardware-configuration.nix37
1 files changed, 24 insertions, 13 deletions
diff --git a/hosts/caladan/hardware-configuration.nix b/hosts/caladan/hardware-configuration.nix
index 4e19405..92df348 100644
--- a/hosts/caladan/hardware-configuration.nix
+++ b/hosts/caladan/hardware-configuration.nix
@@ -21,22 +21,33 @@
MOZ_DISABLE_RDD_SANDBOX = "1";
};
- fileSystems."/mnt/downloads" = {
- device = "192.168.1.2:/srv/caladan/downloads";
- fsType = "nfs";
- options = [
- "nfsvers=4.2"
- ];
- };
+ fileSystems = {
+ "/media" = {
+ device = "/dev/sda1";
+ fsType = "auto";
+ options = [
+ "user,noauto"
+ ];
+ };
- fileSystems."/mnt/www" = {
- device = "192.168.1.2:/srv/caladan/www";
- fsType = "nfs";
- options = [
- "nfsvers=4.2"
- ];
+ "/mnt/downloads" = {
+ device = "192.168.1.2:/srv/caladan/downloads";
+ fsType = "nfs";
+ options = [
+ "nfsvers=4.2"
+ ];
+ };
+
+ "/mnt/www" = {
+ device = "192.168.1.2:/srv/caladan/www";
+ fsType = "nfs";
+ options = [
+ "nfsvers=4.2"
+ ];
+ };
};
+
hardware = {
amdgpu.overdrive.enable = true;