Files
vargix-os/w00149.nix
Kurtis 02648203c6 Moved config to local one
Added rock64 configuration
modified configs for a desktop and server version
2024-04-10 09:08:22 +10:00

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 = "w00149"; # Define your hostname.
system.stateVersion = "23.11"; # Did you read the comment?
}