22 lines
507 B
Nix
22 lines
507 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
imports =
|
|
[ # Include the results of the hardware scan.
|
|
/etc/nixos/hardware-configuration.nix
|
|
./components/base-software.nix
|
|
./components/user-kurtisa.nix
|
|
];
|
|
|
|
# Bootloader.
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
# Enable networking
|
|
networking.networkmanager.enable = true;
|
|
|
|
networking.hostName = "w00072"; # Define your hostname.
|
|
|
|
system.stateVersion = "23.11"; # Did you read the comment?
|
|
|
|
}
|