diff options
author | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2023-06-17 01:47:59 +0900 |
---|---|---|
committer | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2023-06-17 01:47:59 +0900 |
commit | ceaaaaab95fc5e498c7685dd762fad6ac1a355e4 (patch) | |
tree | 9485250b306c689c45cb6235dac182b03a426f4a | |
parent | 0032426e641a99b8322a6a34113d49969625f358 (diff) | |
download | nixos-conf-ceaaaaab95fc5e498c7685dd762fad6ac1a355e4.tar.gz |
Make REUSE check reusable
-rw-r--r-- | automation.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/automation.nix b/automation.nix index 6645935..f561e7f 100644 --- a/automation.nix +++ b/automation.nix @@ -51,7 +51,8 @@ in { isSystemUser = true; group = "laminar"; home = workingDir; + packages = with pkgs; [ git reuse ]; }; - groups.laminar.members = [ "cnx" "nginx" ]; + groups.laminar.members = [ "nginx" ]; }; } |