infrastructure/config/hosts/yule/configuration.nix
kat witch fdf7cb9e98 Reformat. Small changes.
Ran nixfmt on the whole project. Added an alias for doing that. Changed
some SSH aliases.
2021-02-22 05:40:19 +00:00

22 lines
563 B
Nix

{ config, pkgs, ... }:
{
imports = [ ./hardware.nix ../../services/zfs.nix ];
meta.deploy.profiles = [ "desktop" "development" "sway" "gaming" "network" ];
meta.deploy.ssh.host = "192.168.1.92";
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;
system.stateVersion = "20.09";
}