forked from Fachschaft/nixConfig
12 lines
245 B
Nix
12 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";
|
||
|
}
|