20 lines
279 B
Nix
20 lines
279 B
Nix
![]() |
{ ... }:
|
||
|
|
||
|
{
|
||
|
networking.hostName = "pc-demo2";
|
||
|
|
||
|
beancloud = {
|
||
|
software = {
|
||
|
container = true;
|
||
|
desktop = true;
|
||
|
nextcloud.client = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
imports = [
|
||
|
./network.nix
|
||
|
../../users/root/default.nix
|
||
|
../../users/demo/default.nix
|
||
|
];
|
||
|
}
|