infrastructure/hosts/yule/nixos/default.nix
hexchen e9c5f1c101
services: init restic backup
activate on all relevant hosts
2021-04-21 15:00:44 +01:00

30 lines
637 B
Nix

{ config, pkgs, profiles, ... }:
{
imports = [
./hw.nix
../../../services/zfs.nix
../../../services/restic.nix
profiles.gui
profiles.sway
profiles.kat
profiles.laptop
];
deploy.target = "personal";
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.supportedFilesystems = [ "zfs" ];
networking.hostId = "dddbb888";
networking.hostName = "yule";
networking.useDHCP = false;
networking.interfaces.enp1s0.useDHCP = true;
networking.interfaces.wlp2s0.useDHCP = true;
networking.networkmanager.enable = true;
system.stateVersion = "20.09";
}