aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/configuration/users/spacekookie/default.nix
blob: 5db2e19a7e8aae97d55c8bebe195cb0657a160ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ lib, pkgs, ... }:

{
  name = "spacekookie"; # FIXME: remove this redundancy
  cfg = {
    createHome = true;
    description = "Katharina Fey";
    home = lib.mkDefault "/home";
    uid = lib.mkDefault 1000;
    extraGroups = [ "wheel" "dialout" ];
    shell = lib.mkDefault pkgs.fish;
  };
}