add virginia to mounts

This commit is contained in:
Tao Tien 2024-04-14 04:24:36 -07:00
parent 6aca00a946
commit f765285cd0
4 changed files with 18 additions and 12 deletions

View file

@ -43,9 +43,9 @@
]; ];
# THE FINALS audio borked # THE FINALS audio borked
services.pipewire.enable = false; # services.pipewire.enable = false;
hardware.pulseaudio.enable = true; # hardware.pulseaudio.enable = true;
hardware.pulseaudio.support32Bit = true; # hardware.pulseaudio.support32Bit = true;
services.pipewire.extraConfig = { services.pipewire.extraConfig = {
pipewire."99-low-latency" = { pipewire."99-low-latency" = {
context.properties = { context.properties = {

View file

@ -62,6 +62,11 @@
# what = "//100.97.47.81/television"; # what = "//100.97.47.81/television";
# where = "/mnt/uwuraid/television"; # where = "/mnt/uwuraid/television";
# }) # })
(opts
// {
what = "//100.97.47.81/virginia";
where = "/mnt/uwuraid/virginia";
})
]; ];
systemd.automounts = let systemd.automounts = let
opts = { opts = {
@ -80,6 +85,7 @@
(opts // {where = "/mnt/uwuraid/music";}) (opts // {where = "/mnt/uwuraid/music";})
(opts // {where = "/mnt/uwuraid/photos";}) (opts // {where = "/mnt/uwuraid/photos";})
(opts // {where = "/mnt/uwuraid/syncthing";}) (opts // {where = "/mnt/uwuraid/syncthing";})
(opts // {where = "/mnt/uwuraid/virginia";})
# (opts // {where = "/mnt/uwuraid/television";}) # (opts // {where = "/mnt/uwuraid/television";})
]; ];
} }

View file

@ -91,14 +91,14 @@
"uwuraid" "uwuraid"
]; ];
in { in {
"documents" = { # "documents" = {
path = "/home/tao/documents"; # path = "/home/tao/documents";
devices = devs; # devices = devs;
}; # };
"pictures" = { # "pictures" = {
path = "/home/tao/pictures"; # path = "/home/tao/pictures";
devices = devs; # devices = devs;
}; # };
"projects" = { "projects" = {
path = "/home/tao/projects"; path = "/home/tao/projects";
devices = devs; devices = devs;

View file

@ -2,7 +2,7 @@ source ~/.cache/starship/init.nu
source ~/.zoxide.nu source ~/.zoxide.nu
def bump [] { def bump [] {
cd /home/tao/projects/NOflake/; cd /home/tao/projects/NOflake/;
jj new -B @ -m "bump"; jj new -m "bump";
nix flake update; nix flake update;
rc2nix | save -f /home/tao/projects/NOflake/users/tao/plasma.nix; rc2nix | save -f /home/tao/projects/NOflake/users/tao/plasma.nix;
sudo nixos-rebuild --flake /home/tao/projects/NOflake/ boot --impure; sudo nixos-rebuild --flake /home/tao/projects/NOflake/ boot --impure;