diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-09-29 10:07:35 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-09-29 10:07:35 +0200 |
| commit | 4a86574f3198c4a97675fa05d8db3eb5f507acd2 (patch) | |
| tree | 318e877606de433693dd13f42bdb8a69fa229ee4 | |
| parent | 8b35ee07f9778803febc070b5138e1bebee5447f (diff) | |
updates
| -rw-r--r-- | common/home/default.nix | 2 | ||||
| -rw-r--r-- | common/home/programs/firefox/default.nix | 1 | ||||
| -rw-r--r-- | hosts/workstation/hardware.nix | 18 |
3 files changed, 19 insertions, 2 deletions
diff --git a/common/home/default.nix b/common/home/default.nix index 10b10cd..116f80e 100644 --- a/common/home/default.nix +++ b/common/home/default.nix @@ -43,6 +43,8 @@ let pkgs.signal-desktop pkgs.unzip pkgs.sway-contrib.grimshot + pkgs.wget + pkgs.tor-browser ]; in { diff --git a/common/home/programs/firefox/default.nix b/common/home/programs/firefox/default.nix index c8d43f3..cb26e1c 100644 --- a/common/home/programs/firefox/default.nix +++ b/common/home/programs/firefox/default.nix @@ -35,7 +35,6 @@ in SearchBar = "unified"; ExtensionSettings = { - "*".installation_mode = "blocked"; "uBlock0@raymondhill.net" = { install_url = "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi"; installation_mode = "force_installed"; diff --git a/hosts/workstation/hardware.nix b/hosts/workstation/hardware.nix index d32bde5..f50eb31 100644 --- a/hosts/workstation/hardware.nix +++ b/hosts/workstation/hardware.nix @@ -4,7 +4,6 @@ { config, lib, - pkgs, modulesPath, ... }: @@ -66,6 +65,23 @@ ]; }; + fileSystems."/mnt/storage" = { + device = "//night-server/storage"; + fsType = "cifs"; + options = [ + "users" + "nofail" + "x-systemd.automount" + "noauto" + "x-systemd.idle-timeout=60" + "x-systemd.device-timeout=5s" + "x-systemd.mount-timeout=5s" + "credentials=/etc/keys/storage" + "uid=1000" + "gid=100" + ]; + }; + swapDevices = [ ]; # Enables DHCP on each ethernet and wireless interface. In case of scripted networking |