config/hosts/nixos/bolle/configuration.nix

35 lines
760 B
Nix
Raw Permalink Normal View History

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";
2024-10-07 11:22:08 +02:00
boot.binfmt.emulatedSystems = [
"riscv64-linux"
];
2023-03-01 02:05:51 +01:00
imports = [
./hardware-configuration.nix
../../../profiles/sshd.nix
2023-03-01 02:05:51 +01:00
../../../users/pbsds
../../../users/daniel
../../../users/eirikwit
../../../users/h7x4
../../../users/adrlau
2023-03-01 02:05:51 +01:00
../../../profiles/shell.nix
2023-03-01 02:05:51 +01:00
../../../profiles/domeneshop-dyndns.nix
../../../profiles/known-hosts.nix
2023-03-01 02:05:51 +01:00
];
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;
}