infrastructure/hosts/ostara/nixos/default.nix
2021-04-14 01:28:41 +01:00

22 lines
529 B
Nix

{ config, pkgs, profiles, ... }:
{
imports =
[ ./hw.nix profiles.gui profiles.sway profiles.kat profiles.laptop ];
deploy.target = "slow";
boot.loader.grub.enable = true;
boot.loader.grub.version = 2;
boot.loader.grub.device = "/dev/sda";
networking.hostId = "9f89b327";
networking.hostName = "ostara";
networking.useDHCP = false;
networking.interfaces.enp1s0.useDHCP = true;
networking.interfaces.wlp2s0.useDHCP = true;
networking.networkmanager.enable = true;
system.stateVersion = "20.09";
}