diff options
author | Karel Kočí <cynerd@email.cz> | 2023-02-06 20:44:14 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2023-02-06 20:44:14 +0100 |
commit | 8b96dd41971e008a6a2527fe10c6670d2248117e (patch) | |
tree | c7327ec26648e62279778696e38dc70415d16151 /nixos/machine | |
parent | adc6902502aa03509d138e9220843bf4d6a1a390 (diff) | |
download | nixos-personal-8b96dd41971e008a6a2527fe10c6670d2248117e.tar.gz nixos-personal-8b96dd41971e008a6a2527fe10c6670d2248117e.tar.bz2 nixos-personal-8b96dd41971e008a6a2527fe10c6670d2248117e.zip |
Apply statix suggestions
Diffstat (limited to 'nixos/machine')
-rw-r--r-- | nixos/machine/lipwig.nix | 2 | ||||
-rw-r--r-- | nixos/machine/mrpump.nix | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/nixos/machine/lipwig.nix b/nixos/machine/lipwig.nix index b109065..5483436 100644 --- a/nixos/machine/lipwig.nix +++ b/nixos/machine/lipwig.nix @@ -54,7 +54,7 @@ with lib; { }; services.fcgiwrap = { enable = true; - group = config.services.nginx.group; + inherit (config.services.nginx) group; }; security.acme = { acceptTerms = true; diff --git a/nixos/machine/mrpump.nix b/nixos/machine/mrpump.nix index 68de482..2d626fb 100644 --- a/nixos/machine/mrpump.nix +++ b/nixos/machine/mrpump.nix @@ -8,7 +8,7 @@ with builtins; with lib; { config = let localNix = import (self.inputs.nix.outPath + "/docker.nix") { - pkgs = pkgs; + inherit pkgs; name = "local/nix"; tag = "latest"; bundleNixpkgs = false; |