summaryrefslogtreecommitdiff
path: root/roles/base.nix
blob: 060cca62b50f41a0b324d11b89e3a0b3b70f8422 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ pkgs, ... }:
{
	nixpkgs.config.allowUnfree = true;

  users.users.jras = {
    createHome = true;
    isNormalUser = true;
    extraGroups = [ "wheel" ];
    shell = pkgs.zsh;
    packages = with pkgs; [ git helix curl ];
    openssh.authorizedKeys = [
      "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOpAWpymOovrrdaNh43UHNIifi7hyRjtQZl24gqprUT/ jras@tarrel"
    ];
  };
}