mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
28 lines
744 B
Nix
28 lines
744 B
Nix
# Edit this configuration file to define what should be installed on
|
||
# your system. Help is available in the configuration.nix(5) man page
|
||
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
||
|
||
{ config, pkgs, ... }:
|
||
|
||
{
|
||
imports = [ # Include the results of the hardware scan.
|
||
./hardware-configuration.nix
|
||
../../profiles/common
|
||
../../profiles/desktop
|
||
../../profiles/xfce
|
||
../../profiles/network
|
||
../../profiles/yubikey
|
||
];
|
||
|
||
# Use the systemd-boot EFI boot loader.
|
||
boot.loader.systemd-boot.enable = true;
|
||
boot.loader.efi.canTouchEfiVariables = true;
|
||
|
||
networking.hostName = "litha";
|
||
|
||
networking.useDHCP = false;
|
||
networking.interfaces.enp34s0.useDHCP = true;
|
||
|
||
system.stateVersion = "20.09";
|
||
|
||
}
|