dotfiles/nix/nixos-modules/main.nix
Magic_RB dac0229ede
Add tweedledum and tweedledee
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2021-08-19 18:24:38 +02:00

31 lines
717 B
Nix

{ config, lib, ... }:
with lib;
let
nm-enable = config.networking.networkmanager.enable;
docker-enable = config.virtualisation.docker.enable;
in {
users = {
mutableUsers = false;
users.main = {
isNormalUser = true;
home = "/home/main";
hashedPassword = "<REDACTED>";
description = "main";
uid = 1000;
extraGroups = [ "wheel" "audio" ]
++ (optional nm-enable "network-manager")
++ (optional docker-enable "docker");
openssh.authorizedKeys.keys =
[ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFVkFvalffJ/SMjJGG3WPiqCqFygnWzhGUaeALBIoCsJ (none)" ];
};
groups.main = {
gid = 1000;
};
};
}