2023-03-01 02:05:51 +01:00
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
2023-03-01 02:21:24 +01:00
|
|
|
# Bootloader
|
2023-03-04 01:42:05 +01:00
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
boot.loader.efi.efiSysMountPoint = "/boot/efi";
|
|
|
|
|
2023-03-01 02:05:51 +01:00
|
|
|
imports = [
|
|
|
|
./hardware-configuration.nix
|
2023-07-04 16:28:27 +02:00
|
|
|
../../profiles/sshd.nix
|
2023-03-01 02:05:51 +01:00
|
|
|
|
|
|
|
../../users/pbsds
|
2023-08-27 03:14:01 +02:00
|
|
|
../../users/daniel
|
2023-03-01 02:05:51 +01:00
|
|
|
|
2024-03-26 18:27:48 +01:00
|
|
|
../../profiles/shell.nix
|
2023-03-01 02:05:51 +01:00
|
|
|
|
2023-11-10 22:54:07 +01:00
|
|
|
../../profiles/domeneshop-dyndns
|
2023-03-01 02:05:51 +01:00
|
|
|
#../../profiles/code-remote
|
2024-04-16 06:10:04 +02:00
|
|
|
../../profiles/remote-builders.nix
|
2023-03-01 02:05:51 +01:00
|
|
|
#../../profiles/autossh-reverse-tunnels
|
|
|
|
];
|
2023-10-14 18:23:24 +02:00
|
|
|
services.domeneshop-updater.targets = [ config.networking.fqdn ];
|
2023-03-01 02:05:51 +01:00
|
|
|
|
|
|
|
# Networking
|
|
|
|
networking.networkmanager.enable = true;
|
2023-07-07 17:48:49 +02:00
|
|
|
|
2023-03-01 02:05:51 +01:00
|
|
|
# TODO: remove? Move?
|
|
|
|
programs.dconf.enable = true;
|
|
|
|
}
|