Money additions :money:
This commit is contained in:
parent
47a006cb6f
commit
fece4cf8d8
@ -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";
|
||||
|
@ -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"
|
||||
];
|
||||
|
@ -47,6 +47,8 @@
|
||||
minicom
|
||||
wireshark
|
||||
trash-cli
|
||||
tree
|
||||
screenkey
|
||||
];
|
||||
|
||||
programs.nix-ld.enable = true;
|
||||
|
@ -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 ];
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user