Files
vargix-os/blade.nix
2024-06-29 16:12:41 +10:00

15 lines
337 B
Nix

{ config, pkgs, ... }:
{
imports =
[ # Include the results of the hardware scan.
./hosts/blade/hardware-configuration.nix
./components/base-software.nix
./components/user-kurtisa.nix
];
networking.hostName = "blade"; # Define your hostname.
system.stateVersion = "24.05"; # Did you read the comment?
}