My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/infra/libkookie/configuration/users/spacekookie/default.nix

22 lines
696 B

{ lib, pkgs, ... } @ args:
let klib = (import <modules/harness/lib.nix>) args;
in
{
name = "spacekookie"; # FIXME: remove this redundancy
cfg = {
isNormalUser = true;
createHome = true;
description = "Katharina Fey";
home = klib.mkDefault "/home";
uid = klib.mkDefault 1000;
extraGroups = [ "wheel" "dialout" "video" ];
shell = klib.mkDefault pkgs.fish;
};
pubkeys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBdIsXiaE3YLuqekTg8Xq65n1GUX5IQc8/FKMrbCsCWY" # tempest
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBALMtai+K3wBvpSf9ntuBH1GNte7quhIA4/ZWKlvF0A" # uwu
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICPQ7alBckvMjRL/Tp38dSkZDTR/cLHRcJPwhP5+/fdM" # qq
];
}