This commit is contained in:
Eelco Dolstra
2019-05-28 22:59:05 +02:00
7 changed files with 46 additions and 3 deletions
@@ -0,0 +1,4 @@
{
x.z = 3;
x = { y = 3; z = 3; };
}
@@ -0,0 +1,4 @@
{
x.y.y = 3;
x = { y.y= 3; z = 3; };
}
@@ -0,0 +1,4 @@
{
x = { y = 3; z = 3; };
x.q = 3;
}
@@ -0,0 +1,4 @@
{
x.q = 3;
x = { y = 3; z = 3; };
}
@@ -0,0 +1,7 @@
{
services.ssh.enable = true;
services.ssh = { port = 123; };
services = {
httpd.enable = true;
};
}