mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-07 20:28:08 +01:00
16 lines
272 B
Nix
16 lines
272 B
Nix
{ currentSystemUser, ... }:
|
|
{
|
|
imports = [
|
|
./hardware.nix
|
|
./boot.nix
|
|
./nvidia.nix
|
|
./services.nix
|
|
./virtualisation.nix
|
|
./networking.nix
|
|
];
|
|
|
|
networking.hostName = "katana"; # Define your hostname.
|
|
|
|
system.stateVersion = "25.11"; # Did you read the comment?
|
|
}
|