nixos-config/machines/loki/configuration.nix

179 lines
4.4 KiB
Nix
Raw Normal View History

2022-05-04 10:46:29 +02:00
{ self, nixpkgs, ... }:
let
pkgs = import nixpkgs { system = "x86_64-linux"; };
in
{
2022-08-14 16:38:25 +02:00
imports = [ ./hardware-configuration.nix ../../users/erwin ../../users/root ../../users/builder ];
2021-11-21 19:07:12 +01:00
eboskma = {
2022-08-14 16:38:25 +02:00
users = {
erwin = {
2022-08-18 16:37:26 +02:00
enable = true;
home-manager = true;
2022-08-14 16:38:25 +02:00
};
builder.enable = true;
};
2022-01-06 12:30:32 +01:00
# backscrub.enable = true;
2021-11-21 19:07:12 +01:00
base = {
plymouth.enable = true;
work = false;
kernel = pkgs.linuxKernel.packages.linux_5_19;
2021-11-21 19:07:12 +01:00
};
2021-11-22 08:04:54 +01:00
bluetooth.enable = true;
2021-11-21 19:07:12 +01:00
desktop = {
enable = true;
home-manager = true;
};
2021-11-27 16:01:21 +01:00
docker.enable = true;
2022-02-09 08:13:16 +01:00
element-web.enable = false;
2021-11-27 16:01:21 +01:00
fonts.enable = true;
gnome.enable = true;
greetd.enable = true;
2021-11-27 16:02:15 +01:00
# home-manager = {
# inherit (users) users;
# enable = true;
# };
libvirtd.enable = true;
livebook = {
enable = true;
dataDir = "/home/erwin/workspace/livebook";
userMapping = "1000:100";
};
2021-11-21 19:07:12 +01:00
networking = {
enable = true;
};
2021-11-27 16:01:21 +01:00
nix-common = {
enable = true;
};
2022-06-24 08:42:58 +02:00
tablet.enable = false;
2021-11-21 19:07:12 +01:00
sound.enable = true;
2021-12-06 09:58:39 +01:00
systemd.enable = true;
2021-11-21 19:07:12 +01:00
};
boot.loader = {
systemd-boot = {
enable = true;
configurationLimit = 25;
};
efi.canTouchEfiVariables = true;
};
2021-11-21 19:07:12 +01:00
time.timeZone = "Europe/Amsterdam";
networking = {
hostName = "loki";
useDHCP = false;
networkmanager.enable = true;
useNetworkd = true;
hosts = {
"10.0.0.252" = [ "pve.datarift.nl" ];
};
firewall = {
trustedInterfaces = [ "lo" ];
interfaces."enp4s0" = {
allowedTCPPorts = [
# Horus System V2
12345
5555
5556
# Elixir/Phoenix dev environment
4000
];
};
};
2021-11-21 19:07:12 +01:00
};
systemd.network = {
enable = true;
networks = {
"40-enp4s0" = {
DHCP = "yes";
};
};
};
2021-11-21 19:07:12 +01:00
# nix = {
# package = pkgs.nixUnstable;
# extraOptions = ''
# experimental-features = nix-command flakes
# '';
# };
services.openssh.enable = true;
2021-11-26 22:21:16 +01:00
# TODO: Add to LXD module
# virtualisation.lxd = {
# enable = true;
# recommendedSysctlSettings = true;
# };
# virtualisation.lxc.lxcfs.enable = true;
# networking.bridges = {
# lxdbr0.interfaces = [ ];
# };
# networking.localCommands = ''
# ip address add 10.2.0.1/24 dev lxdbr0
# '';
# networking.firewall.extraCommands = ''
# iptables -A INPUT -i lxdbr0 -m comment --comment "LXD rules for lxdbr0" -j ACCEPT
# # Technically not necessary because FORWARD and OUTPUT by default have an ACCEPT policy,
# # but just to be explicit I'll add them anyway
# iptables -A FORWARD -o lxdbr0 -m comment --comment "LXD rules for lxdbr0" -j ACCEPT
# iptables -A FORWARD -i lxdbr0 -m comment --comment "LXD rules for lxdbr0" -j ACCEPT
# iptables -A OUTPUT -o lxdbr0 -m comment --comment "LXD rules for lxdbr0" -j ACCEPT
# iptables -t nat -A POSTROUTING -s 10.2.0.0/24 ! -d 10.2.0.0/24 -m comment --comment "LXD rules for lxdbr0" -j MASQUERADE
# '';
# boot.kernel.sysctl = {
# "net.ipv4.conf.all.forwarding" = true;
# "net.ipv4.conf.default.forwarding" = true;
# };
# users.users.erwin.extraGroups = [ "lxd" ];
# End TODO: Add to LXD module
services.nfs.server = {
enable = true;
exports = ''
/home/erwin/proxmox-backup 10.0.0.0/24(rw,sync,no_subtree_check,anonuid=1000,anongid=100,all_squash)
'';
lockdPort = 4001;
mountdPort = 4002;
statdPort = 4000;
};
networking.firewall = {
allowedTCPPorts = [ 111 2049 4000 4001 4002 20048 ];
allowedUDPPorts = [ 111 2049 4000 4001 4002 20048 ];
};
2021-11-26 22:21:16 +01:00
sops.defaultSopsFile = ./secrets.yaml;
sops.secrets = {
ha_now_playing_token = {
owner = "erwin";
};
gh_token = {
owner = "erwin";
};
renovate_env = {
owner = "erwin";
};
2022-06-27 10:10:04 +02:00
livebook_cookie = {
owner = "erwin";
};
2021-11-26 22:21:16 +01:00
};
2021-11-21 19:07:12 +01:00
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "21.11"; # Did you read the comment?
}