mirror of
https://github.com/nikdoof/nixos-config.git
synced 2025-12-13 09:42:19 +00:00
19 lines
372 B
Nix
19 lines
372 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
users = {
|
|
defaultUserShell = pkgs.zsh;
|
|
users.nikdoof = {
|
|
isNormalUser = true;
|
|
extraGroups =
|
|
[
|
|
"wheel"
|
|
"video"
|
|
];
|
|
shell = pkgs.zsh;
|
|
openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHWO2qwHaPaQs46na4Aa6gMkw5QqRHUMGQphtgAcDJOw"
|
|
];
|
|
};
|
|
};
|
|
} |