tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
nixos/tests: remove unnecessary stateVersion assignments
K900
2 years ago
5323b93e
6f06066e
+1
-5
2 changed files
expand all
collapse all
unified
split
nixos
tests
containers-imperative.nix
nextcloud
basic.nix
+1
-3
nixos/tests/containers-imperative.nix
···
21
21
modules = lib.singleton {
22
22
nixpkgs = { inherit (config.nixpkgs) localSystem; };
23
23
24
24
-
containers.foo.config = {
25
25
-
system.stateVersion = "18.03";
26
26
-
};
24
24
+
containers.foo.config = {};
27
25
};
28
26
29
27
# The system is inherited from the host above.
-2
nixos/tests/nextcloud/basic.nix
···
37
37
"d /var/lib/nextcloud-data 0750 nextcloud nginx - -"
38
38
];
39
39
40
40
-
system.stateVersion = "22.11"; # stateVersion >=21.11 to make sure that we use OpenSSL3
41
41
-
42
40
services.nextcloud = {
43
41
enable = true;
44
42
datadir = "/var/lib/nextcloud-data";