nixos-infra/users/macan/system.nix
Rustam Efimov 30ce0dafc2
Some checks failed
Nix CI / build (push) Failing after 31s
initial commit
2026-04-01 08:50:01 +03:00

19 lines
408 B
Nix

{ pkgs, ... }:
{
services.openssh.settings.AllowUsers = [ "macan" ];
programs.fish.enable = true;
users.users.macan = {
isNormalUser = true;
description = "macan";
uid = 1002;
extraGroups = [ ];
openssh.authorizedKeys = {
keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAID+VwmEaHwGHqoSlyWgOZDEc0eSMIcr0vNAHNeqWUone macan"
];
};
shell = pkgs.fish;
};
}