summary refs log tree commit diff
path: root/services/conduwuit.nix
diff options
context:
space:
mode:
authorMel <mel@rnrd.eu>2025-02-14 01:38:09 +0100
committerMel <mel@rnrd.eu>2025-02-14 01:38:09 +0100
commit0b11b5d57c096699b7b6f0f0527047d0948fc335 (patch)
tree7039d1bf93dd0ab7318781c5bd3856b988f63d33 /services/conduwuit.nix
parentea98b5d508d40f06e42fb905d6c26e39b9e0d498 (diff)
downloadnetwork-0b11b5d57c096699b7b6f0f0527047d0948fc335.tar.zst
network-0b11b5d57c096699b7b6f0f0527047d0948fc335.zip
Lower renard cache priority, I don't have *that* much bandwidth
Signed-off-by: Mel <mel@rnrd.eu>
Diffstat (limited to 'services/conduwuit.nix')
0 files changed, 0 insertions, 0 deletions
roperty */ .highlight .nt { color: #DDD } /* Name.Tag */ .highlight .nv { color: #EEDD82 } /* Name.Variable */ .highlight .ow { color: #F00 } /* Operator.Word */ .highlight .pm { color: #DDD } /* Punctuation.Marker */ .highlight .w { color: #DDD } /* Text.Whitespace */ .highlight .mb { color: #F0F } /* Literal.Number.Bin */ .highlight .mf { color: #F0F } /* Literal.Number.Float */ .highlight .mh { color: #F0F } /* Literal.Number.Hex */ .highlight .mi { color: #F0F } /* Literal.Number.Integer */ .highlight .mo { color: #F0F } /* Literal.Number.Oct */ .highlight .sa { color: #87CEEB } /* Literal.String.Affix */ .highlight .sb { color: #87CEEB } /* Literal.String.Backtick */ .highlight .sc { color: #87CEEB } /* Literal.String.Char */ .highlight .dl { color: #87CEEB } /* Literal.String.Delimiter */ .highlight .sd { color: #87CEEB } /* Literal.String.Doc */ .highlight .s2 { color: #87CEEB } /* Literal.String.Double */ .highlight .se { color: #87CEEB } /* Literal.String.Escape */ .highlight .sh { color: #87CEEB } /* Literal.String.Heredoc */ .highlight .si { color: #87CEEB } /* Literal.String.Interpol */ .highlight .sx { color: #87CEEB } /* Literal.String.Other */ .highlight .sr { color: #87CEEB } /* Literal.String.Regex */ .highlight .s1 { color: #87CEEB } /* Literal.String.Single */ .highlight .ss { color: #87CEEB } /* Literal.String.Symbol */ .highlight .bp { color: #DDD } /* Name.Builtin.Pseudo */ .highlight .fm { color: #FF0 } /* Name.Function.Magic */ .highlight .vc { color: #EEDD82 } /* Name.Variable.Class */ .highlight .vg { color: #EEDD82 } /* Name.Variable.Global */ .highlight .vi { color: #EEDD82 } /* Name.Variable.Instance */ .highlight .vm { color: #EEDD82 } /* Name.Variable.Magic */ .highlight .il { color: #F0F } /* Literal.Number.Integer.Long */
{ config, pkgs, keys, ... }:

{
  age.secrets.password = {
    file = ../secrets/password.age;
  };

  users.mutableUsers = false;
  users.users.mel = {
    isNormalUser = true;
    description = "Mel";
    shell = pkgs.fish;
    extraGroups = [ "networkmanager" "wheel" "docker" ];

    hashedPasswordFile = config.age.secrets.password.path;
    openssh.authorizedKeys.keys = keys.allUsers;

    packages = (with pkgs; []);
  };
}