Files
vargix-os/blade.nix
Kurtis Andrews fef9835fb1 Initial Commit:
Moved laptop config into git repo and partmentalised it.
2024-03-16 14:55:58 +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 = "23.11"; # Did you read the comment?
}