config/hosts/nord/default.nix

72 lines
2.2 KiB
Nix
Raw Normal View History

2023-03-09 07:27:50 +01:00
{ config, pkgs, lib, ... }:
{
# Bootloader
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.loader.efi.efiSysMountPoint = "/boot/efi";
2023-03-11 00:30:24 +01:00
services.xserver.displayManager.autoLogin.enable = true;
services.xserver.displayManager.autoLogin.user = "pbsds";
# tmp: https://github.com/NixOS/nixpkgs/issues/103746#issuecomment-945091229
systemd.services."getty@tty1".enable = false;
systemd.services."autovt@tty1".enable = false;
2023-03-09 07:27:50 +01:00
2023-03-11 00:30:24 +01:00
boot.kernelPackages = pkgs.linuxPackages_latest; # amdgpu audio fix when at 4k@60fps
2023-03-09 07:27:50 +01:00
2023-03-11 00:30:24 +01:00
imports = [
./hardware-configuration.nix
2023-07-04 16:28:27 +02:00
../../profiles/sshd.nix
2023-03-09 07:27:50 +01:00
2023-03-11 00:30:24 +01:00
../../users/pbsds
2023-03-09 09:28:11 +01:00
2024-01-11 00:36:51 +01:00
../../profiles/mounts/freon-nfs.nix
2023-03-12 05:14:28 +01:00
../../profiles/mounts/reidun-nfs.nix
2023-12-10 06:03:49 +01:00
../../profiles/mounts/meconium-nfs.nix
2024-02-25 15:43:54 +01:00
../../profiles/mounts/fridge-nfs.nix
2023-03-12 05:14:28 +01:00
../../profiles/shell/base.nix
../../profiles/shell/archives.nix
../../profiles/shell/nix-utils.nix
2023-06-29 02:16:16 +02:00
../../profiles/desktop/base.nix
2023-03-12 05:14:28 +01:00
../../profiles/desktop/gnome # configures gdm
#../../profiles/desktop/sound/alsa.nix
2023-03-11 15:59:56 +01:00
#../../profiles/desktop/sound/pulseaudio.nix
../../profiles/desktop/sound/pipewire.nix
2023-03-09 09:28:11 +01:00
2023-03-11 03:39:06 +01:00
../../profiles/desktop/steam.nix
2023-03-12 05:14:28 +01:00
../../profiles/desktop/flatpak.nix
2023-03-09 09:28:11 +01:00
2023-03-11 03:39:06 +01:00
../../profiles/remote-builders
2023-03-09 07:27:50 +01:00
#../../profiles/autossh-reverse-tunnels
2023-03-11 00:30:24 +01:00
#../../profiles/domeneshop-dyndns # handled by noximilien
2023-03-09 07:27:50 +01:00
];
2023-03-12 05:14:28 +01:00
networking.firewall.allowedTCPPorts = [ 57621 ]; # spotify local discovery
2023-03-09 07:27:50 +01:00
2024-02-25 16:04:18 +01:00
networking.wireguard.interfaces."wg0".ips = [ "172.22.48.4/24" ];
2023-03-09 07:27:50 +01:00
# Networking
networking.networkmanager.enable = true;
#networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
networking.interfaces.eno1.ipv4.addresses = [
{ address = "192.168.1.8"; prefixLength = 24; }
];
2023-03-09 07:56:07 +01:00
networking.defaultGateway.address = "192.168.1.254";
networking.defaultGateway.interface = "eno1";
2023-03-09 07:27:50 +01:00
networking.nameservers = [
"192.168.1.254"
"8.8.8.8"
"1.1.1.1"
];
#networking.useDHCP = true;
#TODO: avahi? resolved? https://git.pvv.ntnu.no/Drift/pvv-nixos-config/src/main/base.nix#L15-L18
# TODO: remove? Move?
programs.dconf.enable = true;
# Enable touchpad support (enabled default in most desktopManager).
# services.xserver.libinput.enable = true;
}