2017-07-23 14:09:52 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports =
|
|
|
|
[
|
|
|
|
/etc/nixos/hardware-configuration.nix
|
|
|
|
./basic-tools.nix
|
|
|
|
./common-sw.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
|
|
|
|
|
|
nix.useSandbox = true;
|
|
|
|
nix.binaryCaches = [ https://cache.nixos.org ];
|
|
|
|
nix.trustedBinaryCaches = [ https://cache.nixos.org ];
|
|
|
|
nix.extraOptions = ''
|
|
|
|
auto-optimise-store = true
|
|
|
|
binary-caches-parallel-connections = 10
|
|
|
|
'';
|
|
|
|
|
|
|
|
networking.networkmanager.enable = true;
|
|
|
|
networking.firewall.enable = true;
|
|
|
|
|
2020-08-20 18:02:06 +00:00
|
|
|
time.timeZone = "Europe/Amsterdam";
|
2017-07-23 14:09:52 +00:00
|
|
|
|
|
|
|
# Enable the OpenSSH daemon.
|
|
|
|
services.openssh = {
|
|
|
|
enable = true;
|
|
|
|
permitRootLogin = "no";
|
|
|
|
passwordAuthentication = false;
|
|
|
|
};
|
|
|
|
programs.ssh.startAgent = false;
|
|
|
|
|
|
|
|
# Enable CUPS to print documents.
|
|
|
|
services.avahi.enable = true; # cups browsing support
|
|
|
|
services.printing = {
|
|
|
|
enable = true;
|
|
|
|
browsing = true;
|
|
|
|
drivers = [ pkgs.hplip ];
|
|
|
|
};
|
|
|
|
|
2020-07-24 19:23:06 +00:00
|
|
|
virtualisation.podman = {
|
|
|
|
enable = true;
|
|
|
|
dockerCompat = true;
|
|
|
|
};
|
|
|
|
|
2017-07-23 14:09:52 +00:00
|
|
|
boot.kernel.sysctl = {
|
|
|
|
"kernel.perf_event_paranoid" = "0";
|
|
|
|
"kernel.kptr_restrict" = pkgs.lib.mkForce "0";
|
|
|
|
|
|
|
|
# IntelliJ
|
|
|
|
"fs.inotify.max_user_watches" = 524288;
|
|
|
|
};
|
|
|
|
|
|
|
|
# gapt: `ulimit -n` was 256
|
|
|
|
security.pam.loginLimits = [
|
|
|
|
{ domain = "*"; type = "-"; item = "nofile"; value = "4096"; }
|
|
|
|
];
|
|
|
|
|
|
|
|
fileSystems."/mnt/vaccaria" = {
|
2019-10-14 09:03:14 +00:00
|
|
|
device = "//vaccaria.htdf.gebner.org/export";
|
2017-07-23 14:09:52 +00:00
|
|
|
fsType = "cifs";
|
2020-10-03 10:32:43 +00:00
|
|
|
options = [ "noauto" "x-systemd.automount" "credentials=/etc/smbcredentials/vaccaria" "vers=1.0" "unix" ];
|
2017-07-23 14:09:52 +00:00
|
|
|
};
|
|
|
|
|
2017-08-05 08:29:53 +00:00
|
|
|
fileSystems."/mnt/aplysia" = {
|
2019-10-14 09:03:14 +00:00
|
|
|
device = "//aplysia.ams.gebner.org/export";
|
2017-08-05 08:29:53 +00:00
|
|
|
fsType = "cifs";
|
2020-10-03 10:32:43 +00:00
|
|
|
options = [ "noauto" "x-systemd.automount" "credentials=/etc/smbcredentials/aplysia" "vers=1.0" "unix" ];
|
2017-08-05 08:29:53 +00:00
|
|
|
};
|
|
|
|
|
2017-07-23 14:09:52 +00:00
|
|
|
fileSystems."/mnt/aruanus" = {
|
|
|
|
device = "//aruanus.htdf.gebner.org/export";
|
|
|
|
fsType = "cifs";
|
2020-10-03 10:32:43 +00:00
|
|
|
options = [ "noauto" "x-systemd.automount" "credentials=/etc/smbcredentials/aruanus" "vers=1.0" "unix" ];
|
2017-07-23 14:09:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
users.extraUsers.gebner = {
|
|
|
|
isNormalUser = true;
|
2017-10-26 20:05:58 +00:00
|
|
|
extraGroups = [ "wheel" "networkmanager" "audio" "transmission" ];
|
2017-07-23 14:09:52 +00:00
|
|
|
# shell = "${pkgs.zsh}/bin/zsh";
|
2018-10-09 11:29:33 +00:00
|
|
|
shell = "/run/current-system/sw/bin/fish";
|
2017-07-23 14:09:52 +00:00
|
|
|
|
|
|
|
password = if config.virtualisation != null then "" else null;
|
|
|
|
};
|
|
|
|
|
2020-08-01 14:54:31 +00:00
|
|
|
i18n = {
|
|
|
|
defaultLocale = "en_US.UTF-8";
|
|
|
|
extraLocaleSettings = {
|
2020-08-22 10:51:09 +00:00
|
|
|
# LC_TIME = "en_GB.UTF-8";
|
2020-08-01 14:54:31 +00:00
|
|
|
LC_PAPER = "de_AT.UTF-8";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-06-10 13:07:20 +00:00
|
|
|
system.fsPackages = with pkgs; [
|
|
|
|
ntfs3g
|
|
|
|
exfat
|
|
|
|
];
|
2017-07-23 14:09:52 +00:00
|
|
|
|
|
|
|
}
|