From fece4cf8d8edf461dcb102cac5b3912eaac6be5d Mon Sep 17 00:00:00 2001 From: xbazzi Date: Sat, 19 Jul 2025 02:41:09 -0600 Subject: [PATCH] Money additions :money: --- home/zsh.nix | 3 ++- system/nfs.nix | 13 +++++++++---- system/packages.nix | 2 ++ system/services.nix | 7 +++++-- 4 files changed, 18 insertions(+), 7 deletions(-) diff --git a/home/zsh.nix b/home/zsh.nix index 8a80043..64bc3ca 100755 --- a/home/zsh.nix +++ b/home/zsh.nix @@ -98,7 +98,8 @@ flakePath = "~/nixos-config"; in { - clipboard= "xclip -selection clipboard"; + ls="eza -lh --group-directories-first --icons"; + clipboard="xclip -selection clipboard"; ll = "ls -l"; update = "sudo nixos-rebuild switch"; la = "ls -lAth"; diff --git a/system/nfs.nix b/system/nfs.nix index 9caa70a..e2d83a8 100755 --- a/system/nfs.nix +++ b/system/nfs.nix @@ -3,36 +3,41 @@ { fileSystems."/mnt/os-images" = { - device = "nas.lan.xbazzi.com:/mnt/ALEXANDRIA/os-images"; + device = "nas:/mnt/ALEXANDRIA/os-images"; fsType = "nfs"; options = [ + "x-systemd.automount" + "noauto" "rw" "vers=4" ]; }; - fileSystems."/mnt/docker-shared" = { + fileSystems."/docker-shared" = { device = "nas:/mnt/ALEXANDRIA/docker-shared"; fsType = "nfs"; options = [ + "auto" "rw" "vers=4" ]; }; fileSystems."/mnt/media" = { - device = "nas.lan.xbazzi.com:/mnt/ALEXANDRIA/media"; + device = "nas:/mnt/ALEXANDRIA/media"; fsType = "nfs"; options = [ + "noauto" "rw" "vers=4" ]; }; fileSystems."/mnt/school" = { - device = "nas.lan.xbazzi.com:/mnt/ALEXANDRIA/school"; + device = "nas:/mnt/ALEXANDRIA/school"; fsType = "nfs"; options = [ + "noauto" "rw" "vers=4" ]; diff --git a/system/packages.nix b/system/packages.nix index 81d29b2..fb27f08 100755 --- a/system/packages.nix +++ b/system/packages.nix @@ -47,6 +47,8 @@ minicom wireshark trash-cli + tree + screenkey ]; programs.nix-ld.enable = true; diff --git a/system/services.nix b/system/services.nix index 1845c9d..b834077 100755 --- a/system/services.nix +++ b/system/services.nix @@ -1,8 +1,11 @@ { config, pkgs, ... }: - + { # Enable the OpenSSH daemon. - #services.openssh.enable = true; + services.openssh = { + enable = true; + forwardX11 = true; + }; services.udev.packages = [ pkgs.gnome-settings-daemon ]; }