Merge branch 'nixops' of ssh://git.fudo.org:2222/fudosys/NixOS into nixops
This commit is contained in:
commit
64dc42d3f9
|
@ -1,6 +1,46 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
{
|
let
|
||||||
|
local-domain = "sea.fudo.org";
|
||||||
|
in {
|
||||||
|
fileSystems = {
|
||||||
|
"/mnt/documents" = {
|
||||||
|
device = "whitedwarf.${local-domain}:/volume1/Documents";
|
||||||
|
fsType = "nfs4";
|
||||||
|
};
|
||||||
|
"/mnt/downloads" = {
|
||||||
|
device = "whitedwarf.${local-domain}:/volume1/Downloads";
|
||||||
|
fsType = "nfs4";
|
||||||
|
};
|
||||||
|
"/mnt/music" = {
|
||||||
|
device = "doraemon.${local-domain}:/volume1/Music";
|
||||||
|
fsType = "nfs4";
|
||||||
|
};
|
||||||
|
"/mnt/video" = {
|
||||||
|
device = "doraemon.${local-domain}:/volume1/Video";
|
||||||
|
fsType = "nfs4";
|
||||||
|
};
|
||||||
|
# fileSystems."/mnt/security" = {
|
||||||
|
# device = "panopticon.${local-domain}:/srv/kerberos/data";
|
||||||
|
# fsType = "nfs4";
|
||||||
|
# };
|
||||||
|
"/mnt/cargo_video" = {
|
||||||
|
device = "cargo.${local-domain}:/volume1/video";
|
||||||
|
fsType = "nfs4";
|
||||||
|
};
|
||||||
|
"/mnt/photo" = {
|
||||||
|
device = "cargo.${local-domain}:/volume1/pictures";
|
||||||
|
fsType = "nfs4";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
services.printing = {
|
||||||
|
enable = true;
|
||||||
|
drivers = [
|
||||||
|
pkgs.hll2380dw-cups
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
hll2380dw-cups
|
hll2380dw-cups
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in New Issue