mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
22 lines
529 B
Nix
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";
|
|
}
|