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