mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
29 lines
676 B
Nix
29 lines
676 B
Nix
{ config, users, pkgs, profiles, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hw.nix
|
|
profiles.gui
|
|
profiles.fvwm
|
|
profiles.laptop
|
|
users.kairi.guiFull
|
|
];
|
|
|
|
networking.wireless.interfaces = [ "wlp3s0" ];
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
boot.kernelPackages = pkgs.linuxPackages;
|
|
boot.kernelModules = [ "wl" ];
|
|
boot.extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ];
|
|
|
|
networking.hostId = "d199ad70";
|
|
networking.hostName = "mabon";
|
|
|
|
networking.useDHCP = false;
|
|
networking.interfaces.enp1s0.useDHCP = false;
|
|
networking.interfaces.wlp2s0.useDHCP = true;
|
|
|
|
system.stateVersion = "20.09";
|
|
}
|