35 lines
896 B
Nix
35 lines
896 B
Nix
{ 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
|
|
../../users/daniel
|
|
|
|
../../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
|
|
#../../profiles/code-remote
|
|
#../../profiles/remote-builders
|
|
#../../profiles/autossh-reverse-tunnels
|
|
];
|
|
services.domeneshop-updater.targets = [ config.networking.fqdn ];
|
|
|
|
# Networking
|
|
networking.networkmanager.enable = true;
|
|
|
|
# TODO: remove? Move?
|
|
programs.dconf.enable = true;
|
|
}
|