nixos-config/common-headless.nix

138 lines
3.1 KiB
Nix
Raw Normal View History

2017-07-23 16:09:52 +02:00
{ config, pkgs, ... }:
{
imports =
[
./basic-tools.nix
./common-sw.nix
];
boot.kernelPackages = pkgs.linuxPackages_latest;
2022-01-30 15:22:26 +01:00
nix.settings = {
sandbox = true;
substituters = [ "https://cache.nixos.org" ];
trusted-substituters = [ "https://cache.nixos.org" ];
};
2017-07-23 16:09:52 +02:00
nix.extraOptions = ''
auto-optimise-store = true
binary-caches-parallel-connections = 10
'';
networking.networkmanager.enable = true;
networking.firewall.enable = true;
2020-08-20 20:02:06 +02:00
time.timeZone = "Europe/Amsterdam";
2017-07-23 16:09:52 +02: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 21:23:06 +02:00
virtualisation.podman = {
enable = true;
dockerCompat = true;
};
2022-04-30 13:29:44 +02:00
virtualisation.containers.containersConf.settings = {
engine = {
cgroup_manager = "cgroupfs";
};
};
virtualisation.containers = {
registries.search = [ "docker.io" ];
};
2020-11-21 11:30:36 +01:00
virtualisation.lxd.enable = true;
2020-11-21 11:50:32 +01:00
virtualisation.lxd.recommendedSysctlSettings = true;
2021-11-05 20:15:31 +01:00
virtualisation.lxd.package = pkgs.lxd;
2020-11-21 11:50:32 +01:00
virtualisation.lxc.lxcfs.enable = true;
2020-11-21 11:30:36 +01:00
systemd.enableUnifiedCgroupHierarchy = pkgs.lib.mkForce true;
2017-07-23 16:09:52 +02:00
boot.kernel.sysctl = {
"kernel.perf_event_paranoid" = "0";
"kernel.kptr_restrict" = pkgs.lib.mkForce "0";
# IntelliJ
2020-11-21 11:50:32 +01:00
"fs.inotify.max_user_watches" = pkgs.lib.mkDefault 524288;
2020-11-21 15:43:43 +01:00
# undo lxd "recommendedSysctlSettings"
"kernel.dmesg_restrict" = pkgs.lib.mkForce 0;
2017-07-23 16:09:52 +02:00
};
# gapt: `ulimit -n` was 256
security.pam.loginLimits = [
{ domain = "*"; type = "-"; item = "nofile"; value = "4096"; }
];
fileSystems."/mnt/vaccaria" = {
2019-10-14 11:03:14 +02:00
device = "//vaccaria.htdf.gebner.org/export";
2017-07-23 16:09:52 +02:00
fsType = "cifs";
options = [ "noauto" "x-systemd.automount" "credentials=/etc/smbcredentials/vaccaria" "vers=1.0" ];
2017-07-23 16:09:52 +02:00
};
2017-08-05 10:29:53 +02:00
fileSystems."/mnt/aplysia" = {
2019-10-14 11:03:14 +02:00
device = "//aplysia.ams.gebner.org/export";
2017-08-05 10:29:53 +02:00
fsType = "cifs";
options = [ "noauto" "x-systemd.automount" "credentials=/etc/smbcredentials/aplysia" "vers=1.0" ];
2017-08-05 10:29:53 +02:00
};
2017-07-23 16:09:52 +02:00
fileSystems."/mnt/aruanus" = {
device = "//aruanus.htdf.gebner.org/export";
fsType = "cifs";
options = [ "noauto" "x-systemd.automount" "credentials=/etc/smbcredentials/aruanus" "vers=1.0" ];
2017-07-23 16:09:52 +02:00
};
users.extraUsers.gebner = {
isNormalUser = true;
2020-11-21 11:28:14 +01:00
extraGroups = [
"wheel"
"networkmanager"
"audio"
"transmission"
"lxd"
"libvirtd"
"vboxusers"
"wireshark"
];
2017-07-23 16:09:52 +02:00
# shell = "${pkgs.zsh}/bin/zsh";
2022-05-01 15:15:41 +02:00
shell = "/run/current-system/sw/bin/fish";
2017-07-23 16:09:52 +02:00
password = if config.virtualisation != null then "" else null;
};
2021-03-11 19:10:47 +01:00
users.groups = {
transmission = {
gid = config.ids.gids.transmission;
};
};
2020-08-01 16:54:31 +02:00
i18n = {
defaultLocale = "en_US.UTF-8";
extraLocaleSettings = {
2020-08-22 12:51:09 +02:00
# LC_TIME = "en_GB.UTF-8";
2020-08-01 16:54:31 +02:00
LC_PAPER = "de_AT.UTF-8";
};
};
2018-06-10 15:07:20 +02:00
system.fsPackages = with pkgs; [
ntfs3g
2021-10-30 16:03:11 +02:00
exfatprogs
2018-06-10 15:07:20 +02:00
];
2017-07-23 16:09:52 +02:00
}