forked from Fachschaft/nixConfig
13 lines
216 B
Nix
13 lines
216 B
Nix
|
{
|
||
|
imports = [
|
||
|
./hardware-configuration.nix
|
||
|
../../roles
|
||
|
../../roles/hardware.nix
|
||
|
./network.nix
|
||
|
];
|
||
|
|
||
|
# System configuration here
|
||
|
networking.hostName = "bragi";
|
||
|
system.stateVersion = "23.11";
|
||
|
}
|