1 { config, pkgs, lib, inputs, private, hostName, ... }:
 
   4   ../nixos/profiles/builder.nix
 
   5   ../nixos/profiles/debug.nix
 
   6   ../nixos/profiles/dnscrypt-proxy2.nix
 
   7   ../nixos/profiles/graphical.nix
 
   8   ../nixos/profiles/lang-fr.nix
 
   9   ../nixos/profiles/networking.nix
 
  10   ../nixos/profiles/printing.nix
 
  11   ../nixos/profiles/security.nix
 
  12   ../nixos/profiles/system.nix
 
  13   ../nixos/profiles/tor.nix
 
  14   ../nixos/profiles/irssi.nix
 
  15   ../nixos/profiles/wireguard/wg-intra.nix
 
  21 home-manager.users.julm = {
 
  22   imports = [ ../homes/julm.nix ];
 
  23   host.hardware = [ "ThinkPad" "X201" ];
 
  25 systemd.services.home-manager-julm.postStart = ''
 
  26   ${pkgs.nix}/bin/nix-env --delete-generations +1 --profile /nix/var/nix/profiles/per-user/julm/home-manager
 
  31   # Put the hashedPassword in /nix/store, but it will also be in /etc/passwd
 
  32   # which is already world readable.
 
  33   hashedPassword = lib.readFile ../private/world/julm/hashedPassword;
 
  43     config.services.davfs2.davGroup
 
  46   # If created, zfs-mount.service would require:
 
  47   # zfs set overlay=yes ${hostName}/home
 
  49   openssh.authorizedKeys.keys = map lib.readFile [
 
  50     ../private/shared/ssh/julm/losurdo.pub
 
  56     #secret-key-files = /run/credentials/nix-daemon.service/secret-key-files.pem
 
  57     secret-key-files = ${private}/${hostName}/nix/binary-cache/priv.pem
 
  60     trusted-users = [ config.users.users."julm".name ];
 
  62       #"http://nix-localcache.losurdo.wg"
 
  63       "ssh://nix-ssh@losurdo.wg?priority=30"
 
  65     trusted-public-keys = map lib.readFile [
 
  66       ../private/shared/nix/losurdo.pub
 
  69   nixPath = lib.mkForce [ "nixpkgs=${inputs.nixpkgs}" ];
 
  71 #environment.etc."nixpkgs".source = pkgs.path;
 
  72 #environment.etc."nixpkgs-overlays".source = inputs.self + "/nixpkgs";
 
  74 nix.settings.allowed-users = [ config.users.users."nix-ssh".name ];
 
  77   keys = map lib.readFile [
 
  78     ../private/shared/ssh/julm/losurdo.pub
 
  79     ../private/shared/ssh/sevy/patate.pub
 
  80     ../private/shared/ssh/julm/oignon.pub
 
  84 environment.systemPackages = [
 
  85   pkgs.riseup-vpn # Can't be installed by home-manager because it needs to install policy-kit rules
 
  88 boot.extraModulePackages = [
 
  89   #config.boot.kernelPackages.v4l2loopback
 
  92 programs.fuse.userAllowOther = true;
 
  94 services.davfs2.enable = true;
 
  97   # Use the user's gpg-agent session to query
 
  98   # for the password of the SSH key when auto-mounting.
 
 101       pkgs.writeScript "sshAsUser-${user}" ''
 
 102          exec ${pkgs.sudo}/bin/sudo -i -u ${user} \
 
 103            ${pkgs.openssh}/bin/ssh "$@"
 
 107         "noatime" "noexec" "nosuid"
 
 108         "user" "uid=julm" "gid=users" "allow_other"
 
 109         "_netdev" "ssh_command=${sshAsUser "julm"}" #  "reconnect"
 
 110         "noauto" "x-gvfs-hide" "x-systemd.automount"
 
 111         #"Compression=yes" # YMMV
 
 112         # Disconnect approximately 2*15=30 seconds after a network failure
 
 113         "ServerAliveCountMax=1"
 
 114         "ServerAliveInterval=15"
 
 118     device = "${pkgs.sshfs-fuse}/bin/sshfs#julm@losurdo.wg:/";
 
 123     device = "${pkgs.sshfs-fuse}/bin/sshfs#julm@mermet.wg:/";
 
 127   "/mnt/ilico/severine" = {
 
 128     device = "https://nuage.ilico.org/remote.php/dav/files/severine/";
 
 131       let conf = pkgs.writeText "davfs2.conf" ''
 
 132         backup_dir /home/julm/.local/share/davfs2/ilico/severine
 
 133         secrets /home/julm/.davfs2/secrets
 
 135       [ "conf=${conf}" "user" "noexec" "nosuid"
 
 136         "noauto" "nofail" "_netdev" "reconnect"
 
 137         "x-systemd.automount"
 
 138         "x-systemd.device-timeout=1m"
 
 139         "x-systemd.idle-timeout=1m"
 
 140         "x-systemd.mount-timeout=10s"
 
 145 networking.firewall.extraCommands = ''
 
 146   ip46tables -A nixos-fw -i wg-intra -p tcp -m tcp --dport 8000 -j ACCEPT
 
 151   defaultMode = "online";
 
 154   localDiscovery = false;
 
 156     Datastore.StorageMax = "10GB";
 
 157     Discovery.MDNS.Enabled = false;
 
 160     #Swarm.AddrFilters = null;
 
 162   startWhenNeeded = true;
 
 165 services.udev.packages = [
 
 166   # Allow the console user access the Yubikey USB device node,
 
 167   # needed for challenge/response to work correctly.
 
 168   pkgs.yubikey-personalization
 
 174       # Let the session be generated by home-manager
 
 175       { name = "home-manager";
 
 177           ${pkgs.runtimeShell} $HOME/.hm-xsession &
 
 184     defaultSession = "home-manager";
 
 185     #defaultSession = "none+xmonad";
 
 186     #defaultSession = "mate";
 
 187     #defaultSession = "cinnamon";
 
 189       user = config.users.users.julm.name;
 
 194 # This value determines the NixOS release with which your system is to be
 
 195 # compatible, in order to avoid breaking some software such as database
 
 196 # servers. You should change this only after NixOS release notes say you should.
 
 197 system.stateVersion = "20.09"; # Did you read the comment?