11 lines
227 B
Nix
11 lines
227 B
Nix
{ config, pkgs, ... } : {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./index.nix
|
|
];
|
|
|
|
networking.networkmanager.enable = true;
|
|
networking.hostName = "nix-axolotsh";
|
|
|
|
system.stateVersion = "25.05";
|
|
} |