summaryrefslogtreecommitdiff
path: root/hosts/vidhar/borg.nix
blob: 0a0b37a5361d643431de138cc4df573ed56ca4dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ ... }:
{
  config = {
    users.users.borg = {
      isSystemUser = true;
      createHome = false;
      group = "borg";
      extraGroups = [ "ssh" ];
    };
    users.groups."borg" = {};
  };
}