forked from Fachschaft/nixConfig
11 lines
245 B
Nix
11 lines
245 B
Nix
{ ... }@args :{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
(import ../../roles/default.nix (args // {vm=false;}))
|
|
./network.nix
|
|
];
|
|
|
|
# System configuration here
|
|
networking.hostName = "bragi";
|
|
system.stateVersion = "23.11";
|
|
}
|