93 lines
2.4 KiB
Nix
Raw Normal View History

2021-02-25 20:45:50 +00:00
{ config, lib, pkgs, ... }:
2021-06-08 14:22:37 -07:00
let local-domain = "sea.fudo.org";
2021-04-02 21:08:01 +00:00
in {
fileSystems = {
"/mnt/documents" = {
device = "whitedwarf.${local-domain}:/volume1/Documents";
fsType = "nfs4";
options = [ "comment=systemd.automount" ];
2021-04-02 21:08:01 +00:00
};
"/mnt/downloads" = {
device = "whitedwarf.${local-domain}:/volume1/Downloads";
fsType = "nfs4";
options = [ "comment=systemd.automount" ];
2021-04-02 21:08:01 +00:00
};
"/mnt/music" = {
device = "doraemon.${local-domain}:/volume1/Music";
fsType = "nfs4";
options = [ "comment=systemd.automount" ];
2021-04-02 21:08:01 +00:00
};
"/mnt/video" = {
device = "doraemon.${local-domain}:/volume1/Video";
fsType = "nfs4";
options = [ "comment=systemd.automount" ];
2021-04-02 21:08:01 +00:00
};
# fileSystems."/mnt/security" = {
# device = "panopticon.${local-domain}:/srv/kerberos/data";
# fsType = "nfs4";
# };
"/mnt/cargo_video" = {
device = "cargo.${local-domain}:/volume1/video";
fsType = "nfs4";
options = [ "comment=systemd.automount" ];
2021-04-02 21:08:01 +00:00
};
"/mnt/photo" = {
device = "cargo.${local-domain}:/volume1/pictures";
fsType = "nfs4";
options = [ "comment=systemd.automount" ];
2021-04-02 21:08:01 +00:00
};
2021-10-19 10:04:35 -07:00
"/net/documents" = {
device = "sea-store.${local-domain}:/export/documents";
fsType = "nfs";
options = [
"nfsvers=4.2"
"comment=systemd.automount"
"sec=krb5p"
# "noauto" ?
];
2021-10-18 21:55:24 -07:00
};
2021-10-19 10:04:35 -07:00
"/net/downloads" = {
device = "sea-store.${local-domain}:/export/downloads";
fsType = "nfs";
options = [
"nfsvers=4.2"
"comment=systemd.automount"
"sec=krb5i"
# "noauto" ?
];
2021-10-18 21:55:24 -07:00
};
2021-04-02 21:08:01 +00:00
};
2021-10-19 10:04:35 -07:00
# systemd.mounts = [
# {
# what = "sea-store.sea.fudo.org:/export/documents";
# where = "/net/documents";
# type = "nfs4";
# options = "sec=krb5p";
# description = "sea-store documents on encrypted filesysem.";
# }
# {
# what = "sea-store.sea.fudo.org:/export/downloads";
# where = "/net/downloads";
# type = "nfs4";
# options = "sec=krb5i";
# description = "sea-store downloads on encrypted filesysem.";
# }
# ];
2021-04-02 21:08:01 +00:00
services.printing = {
enable = true;
drivers = [
2021-06-08 14:22:37 -07:00
# pkgs.brlaser
# pkgs.brgenml1lpr
# pkgs.brgenml1cupswrapper
# pkgs.hll2380dw-cups
# pkgs.hll2380dw-lpr
2021-04-02 21:08:01 +00:00
];
};
2021-06-08 14:22:37 -07:00
environment.systemPackages = with pkgs; [ hll2380dw-cups ];
2021-03-31 23:28:42 +00:00
}