Compare commits

...

4 commits

Author SHA1 Message Date
vanten-s 6195428c72 Merge branch 'main' of git.vanten-s.com:vanten-s/dotfiles 2024-03-25 11:54:39 +01:00
vanten-s 5737caeee4 Added printers 2024-03-25 11:54:23 +01:00
vanten-s 7ed106cd9c Added freecad 2024-03-25 11:54:11 +01:00
vanten-s d0315e55b5 Screenshot script 2024-03-25 11:52:42 +01:00
3 changed files with 27 additions and 0 deletions

View file

@ -28,6 +28,20 @@ in {
# Enable networking
networking.networkmanager.enable = true;
services.printing.enable = true;
services.avahi = {
enable = true;
nssmdns = true;
openFirewall = true;
};
services.printing.drivers = with pkgs; [
epson-escpr2
epson-escpr
ghostscript
cups-filters
];
# Set your time zone.
time.timeZone = "Europe/Stockholm";
@ -178,6 +192,16 @@ in {
in ["${automount_opts},credentials=/etc/nixos/smb-secrets,uid=1000,gid=1000"];
};
fileSystems."/mnt/development" = {
device = "//vanten-s.com/development";
fsType = "cifs";
options = let
# this line prevents hanging on network split
automount_opts = "x-systemd.automount,noauto,x-systemd.idle-timeout=60,x-systemd.device-timeout=5s,x-systemd.mount-timeout=5s,user,users";
in ["${automount_opts},credentials=/etc/nixos/smb-secrets,uid=1000,gid=1000"];
};
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
# programs.mtr.enable = true;

View file

@ -0,0 +1,2 @@
cd ~/timelapses/pictures
gphoto2 --capture-image-and-download --force-overwrite --filename "$1"

View file

@ -17,6 +17,7 @@
pkgs.prismlauncher
pkgs.prusa-slicer
pkgs.gphoto2
pkgs.freecad
];
home.file = {