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";
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";

View File

@ -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"
];

View File

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

View File

@ -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 ];
}