update sternchen
This commit is contained in:
parent
b934a7d349
commit
156da1dd3b
4 changed files with 23 additions and 0 deletions
|
@ -24,5 +24,8 @@
|
|||
enableSshSupport = true;
|
||||
enableZshIntegration = true;
|
||||
# sshKeys = [];
|
||||
defaultCacheTtl = 30;
|
||||
defaultCacheTtlSsh = 30;
|
||||
|
||||
};
|
||||
}
|
||||
|
|
|
@ -158,6 +158,8 @@ with lib;
|
|||
nixpkgs-fmt
|
||||
treefmt
|
||||
|
||||
mermaid-cli
|
||||
|
||||
] ++ (map pandocScript (lib.cartesianProductOfSets {
|
||||
inputFormat = [ "man" "markdown" "mediawiki" "asciidoc" ];
|
||||
outputFormat = [ "mediawiki" "docbook5" "html5" "man" "jira" "markdown" ];
|
||||
|
|
|
@ -10,6 +10,8 @@
|
|||
./syncthing.nix
|
||||
./tinc.nix
|
||||
|
||||
./cups.nix
|
||||
|
||||
];
|
||||
|
||||
sops.defaultSopsFile = ../../secrets/sternchen.yaml;
|
||||
|
|
16
nixos/machines/sternchen/cups.nix
Normal file
16
nixos/machines/sternchen/cups.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
hardware.printers.ensurePrinters = [
|
||||
{
|
||||
description = "Lexmark E350d";
|
||||
deviceUri = "usb://Lexmark/E350d?serial=622Z9ZC";
|
||||
location = "office";
|
||||
name = "Lexmark_E350d";
|
||||
model = "drv:///sample.drv/generic.ppd";
|
||||
ppdOptions = {
|
||||
job-sheets = "none, none";
|
||||
media = "na_letter_8.5x11in";
|
||||
sides = "one-sided";
|
||||
};
|
||||
}
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue