nixos-config/nixos/machines/chungus/configuration.nix

97 lines
2.2 KiB
Nix
Raw Normal View History

2023-04-29 23:29:05 +02:00
{ config, pkgs, lib, ... }: {
imports = [
./hardware-configuration.nix
../../system/server
./disko-config.nix
./packages.nix
2023-05-12 11:17:58 +02:00
./network-wireguard.nix
2023-05-05 22:33:05 +02:00
./network-tinc.nix
./hass.nix
./hass-zigbee2mqtt.nix
./hass-mqtt.nix
#./hass-wifi.nix
#./mail-fetcher.nix
2023-04-29 23:29:05 +02:00
#./borg.nix
#./taskwarrior-pushover.nix
2023-05-04 20:59:26 +02:00
2023-05-05 22:33:05 +02:00
./media-share.nix
./media-tdarr.nix
./media-jellyfin.nix
2023-05-04 20:59:26 +02:00
2023-04-29 23:29:05 +02:00
# logging
./loki.nix
./loki-promtail.nix
./prometheus.nix
./grafana.nix
./telegraf.nix
#./home-display.nix
./rbackup.nix
2023-05-04 10:12:52 +02:00
./sync-torrent.nix
2023-05-04 19:35:15 +02:00
./sync-script.nix
2023-05-12 11:17:58 +02:00
./syncthing.nix
2023-05-01 21:36:46 +02:00
2023-04-29 23:29:05 +02:00
];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.tmpOnTmpfs = true; # make /tmp a tmpfs (performance!)
boot.supportedFilesystems = [ "zfs" ];
# head -c4 /dev/urandom | od -A none -t x4
networking.hostId = "e439b116";
2023-05-02 19:15:30 +02:00
services.zfs.autoSnapshot.enable = true;
2023-04-29 23:29:05 +02:00
2023-05-05 09:49:58 +02:00
#virtualisation.containers.storage.settings = {
# # fixes: Error: 'overlay' is not supported over zfs, a mount_program is required: backing file system is unsupported for this graph driver
# storage.options.mount_program = "${pkgs.fuse-overlayfs}/bin/fuse-overlayfs";
#};
virtualisation.podman.extraPackages = [ pkgs.zfs ]; # make sure /var/lib/containers/storage is a zfs dataset
2023-04-29 23:29:05 +02:00
sops.defaultSopsFile = ../../secrets/chungus.yaml;
networking.hostName = "chungus";
programs.custom. zsh.enable = true;
users.users.root.shell = pkgs.zsh;
# todo : rename to component.init.ssh
2023-04-30 00:47:46 +02:00
# todo : make tor optional
2023-05-01 15:46:51 +02:00
configuration.init-ssh = {
enable = "enabled";
kernelModules = [ "e1000e" ];
};
2023-04-29 23:29:05 +02:00
# just enable lan
#networking.dhcpcd.allowInterfaces = [ "enp0s25" ];
# nix-shell -p speedtest_cli --run speedtest
#configuration.fireqos = {
# enable = false;
# interface = "enp0s25";
# input = 200000;
# output = 2000;
# balance = false;
#};
services.printing.enable = false;
services.smartd.enable = true;
#home-manager.users.mailUser.home.stateVersion = "22.11";
2023-05-07 02:28:37 +02:00
system.custom.mainUser = {
enable = true;
userName = "palo";
};
users.users.mainUser.extraGroups = [ "media" ];
2023-04-29 23:29:05 +02:00
}