18 lines
267 B
Nix
18 lines
267 B
Nix
|
{ jovian, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
./boot
|
||
|
./disko
|
||
|
./hardware
|
||
|
./wireguard
|
||
|
../../modules/system
|
||
|
];
|
||
|
|
||
|
system.lanzaboote.enable = true;
|
||
|
system.libvirtd.enable = true;
|
||
|
|
||
|
jovian.steamos.useSteamOSConfig = true;
|
||
|
|
||
|
networking.hostName = "jupiter";
|
||
|
}
|