17 lines
288 B
Nix
17 lines
288 B
Nix
|
flake-inputs:
|
||
|
{config, pkgs, lib, ... }: {
|
||
|
|
||
|
imports = [
|
||
|
./hardware-configuration.nix
|
||
|
(import ./jitsi.nix flake-inputs)
|
||
|
../../roles
|
||
|
../../roles/xen_guest.nix
|
||
|
./network.nix
|
||
|
];
|
||
|
|
||
|
# System configuration here
|
||
|
|
||
|
networking.hostName = "ghatanothoa";
|
||
|
system.stateVersion = "23.11";
|
||
|
}
|