2023-10-25 19:57:12 +02:00
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
|
|
# Bootloader
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
boot.loader.efi.efiSysMountPoint = "/boot/efi";
|
|
|
|
|
|
|
|
imports = [
|
|
|
|
./hardware-configuration.nix
|
|
|
|
../../profiles/auto-upgrade.nix
|
|
|
|
../../profiles/upgrade-diff.nix
|
|
|
|
../../profiles/sshd.nix
|
|
|
|
|
|
|
|
../../users/pbsds
|
|
|
|
|
|
|
|
../../profiles/shell/base.nix
|
|
|
|
../../profiles/shell/archives.nix
|
|
|
|
../../profiles/shell/nix-utils.nix
|
|
|
|
#../../profiles/shell/binfmt-emu.nix # qemu won't compile...
|
|
|
|
|
|
|
|
../../profiles/domeneshop-dyndns # TODO: secrets
|
|
|
|
#../../profiles/code-remote
|
|
|
|
#../../profiles/remote-builders
|
|
|
|
#../../profiles/autossh-reverse-tunnels
|
|
|
|
];
|
|
|
|
services.domeneshop-updater.targets = [ config.networking.fqdn ];
|
|
|
|
|
|
|
|
# Networking
|
|
|
|
networking.networkmanager.enable = true;
|
|
|
|
|
|
|
|
networking.nameservers = [
|
2023-11-21 00:39:09 +01:00
|
|
|
"2001:700:1:11::2:51" # dns64.uninett.no
|
|
|
|
#"129.241.0.200"
|
|
|
|
#"129.241.0.201"
|
|
|
|
"2001:700:300::200"
|
|
|
|
"2001:700:300::201"
|
2023-10-25 19:57:12 +02:00
|
|
|
];
|
|
|
|
|
2023-12-03 20:53:03 +01:00
|
|
|
networking.networkmanager.insertNameservers = config.networking.nameservers; # wtf
|
|
|
|
|
2023-10-25 19:57:12 +02:00
|
|
|
# Installed system packages
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
cage
|
|
|
|
weston
|
|
|
|
];
|
|
|
|
|
|
|
|
# TODO: remove? Move?
|
|
|
|
programs.dconf.enable = true;
|
|
|
|
|
|
|
|
# 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. It's 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 = "23.05"; # Did you read the comment?
|
|
|
|
}
|