Money additions :money:

This commit is contained in:
xbazzi 2025-07-19 02:41:09 -06:00
parent 47a006cb6f
commit fece4cf8d8
4 changed files with 18 additions and 7 deletions

View File

@ -98,7 +98,8 @@
flakePath = "~/nixos-config"; flakePath = "~/nixos-config";
in in
{ {
clipboard= "xclip -selection clipboard"; ls="eza -lh --group-directories-first --icons";
clipboard="xclip -selection clipboard";
ll = "ls -l"; ll = "ls -l";
update = "sudo nixos-rebuild switch"; update = "sudo nixos-rebuild switch";
la = "ls -lAth"; la = "ls -lAth";

View File

@ -3,36 +3,41 @@
{ {
fileSystems."/mnt/os-images" = { fileSystems."/mnt/os-images" = {
device = "nas.lan.xbazzi.com:/mnt/ALEXANDRIA/os-images"; device = "nas:/mnt/ALEXANDRIA/os-images";
fsType = "nfs"; fsType = "nfs";
options = [ options = [
"x-systemd.automount"
"noauto"
"rw" "rw"
"vers=4" "vers=4"
]; ];
}; };
fileSystems."/mnt/docker-shared" = { fileSystems."/docker-shared" = {
device = "nas:/mnt/ALEXANDRIA/docker-shared"; device = "nas:/mnt/ALEXANDRIA/docker-shared";
fsType = "nfs"; fsType = "nfs";
options = [ options = [
"auto"
"rw" "rw"
"vers=4" "vers=4"
]; ];
}; };
fileSystems."/mnt/media" = { fileSystems."/mnt/media" = {
device = "nas.lan.xbazzi.com:/mnt/ALEXANDRIA/media"; device = "nas:/mnt/ALEXANDRIA/media";
fsType = "nfs"; fsType = "nfs";
options = [ options = [
"noauto"
"rw" "rw"
"vers=4" "vers=4"
]; ];
}; };
fileSystems."/mnt/school" = { fileSystems."/mnt/school" = {
device = "nas.lan.xbazzi.com:/mnt/ALEXANDRIA/school"; device = "nas:/mnt/ALEXANDRIA/school";
fsType = "nfs"; fsType = "nfs";
options = [ options = [
"noauto"
"rw" "rw"
"vers=4" "vers=4"
]; ];

View File

@ -47,6 +47,8 @@
minicom minicom
wireshark wireshark
trash-cli trash-cli
tree
screenkey
]; ];
programs.nix-ld.enable = true; programs.nix-ld.enable = true;

View File

@ -1,8 +1,11 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
# Enable the OpenSSH daemon. # Enable the OpenSSH daemon.
#services.openssh.enable = true; services.openssh = {
enable = true;
forwardX11 = true;
};
services.udev.packages = [ pkgs.gnome-settings-daemon ]; services.udev.packages = [ pkgs.gnome-settings-daemon ];
} }