dotfiles/nix/nixos-modules/main.nix

31 lines
717 B
Nix
Raw Normal View History

{ 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;
};
};
}