Initial Commit:

Moved laptop config into git repo and partmentalised it.
This commit is contained in:
Kurtis Andrews
2024-03-16 14:55:58 +10:00
commit fef9835fb1
6 changed files with 279 additions and 0 deletions

14
w00072.nix Normal file
View File

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