Upstream nixpkgs removed a lot of aliases this time, so we needed to do the following transformations. It's a real shame that aliases only really become discoverable easily when they are removed. * runCommandNoCC -> runCommand * gmailieer -> lieer We also need to work around the fact that home-manager hasn't catched on to this rename. * mysql -> mariadb * pkgconfig -> pkg-config This also affects our Nix fork which needs to be bumped. * prometheus_client -> prometheus-client * rxvt_unicode -> rxvt-unicode-unwrapped * nix-review -> nixpkgs-review * oauth2_proxy -> oauth2-proxy Additionally, some Go-related builders decided to drop support for passing the sha256 hash in directly, so we need to use the generic hash arguments. Change-Id: I84aaa225ef18962937f8616a9ff064822f0d5dc3 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6792 Autosubmit: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI Reviewed-by: grfn <grfn@gws.fyi> Reviewed-by: flokli <flokli@flokli.de> Reviewed-by: tazjin <tazjin@tvl.su> Reviewed-by: wpcarro <wpcarro@gmail.com>
		
			
				
	
	
		
			94 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
# Standard NixOS users for TVL machines, as well as configuration that
 | 
						|
# should following along when they are added to a machine.
 | 
						|
{ depot, pkgs, ... }:
 | 
						|
 | 
						|
{
 | 
						|
  users = {
 | 
						|
    users.tazjin = {
 | 
						|
      isNormalUser = true;
 | 
						|
      extraGroups = [ "git" "wheel" ];
 | 
						|
      shell = pkgs.fish;
 | 
						|
      openssh.authorizedKeys.keys = depot.users.tazjin.keys.all;
 | 
						|
    };
 | 
						|
 | 
						|
    users.lukegb = {
 | 
						|
      isNormalUser = true;
 | 
						|
      extraGroups = [ "git" "wheel" ];
 | 
						|
      openssh.authorizedKeys.keys = depot.users.lukegb.keys.all;
 | 
						|
    };
 | 
						|
 | 
						|
    users.grfn = {
 | 
						|
      isNormalUser = true;
 | 
						|
      extraGroups = [ "git" "wheel" ];
 | 
						|
      openssh.authorizedKeys.keys = [
 | 
						|
        depot.users.grfn.keys.whitby
 | 
						|
      ];
 | 
						|
    };
 | 
						|
 | 
						|
    users.edef = {
 | 
						|
      isNormalUser = true;
 | 
						|
      extraGroups = [ "git" ];
 | 
						|
      openssh.authorizedKeys.keys = depot.users.edef.keys.all;
 | 
						|
    };
 | 
						|
 | 
						|
    users.qyliss = {
 | 
						|
      isNormalUser = true;
 | 
						|
      extraGroups = [ "git" ];
 | 
						|
      openssh.authorizedKeys.keys = depot.users.qyliss.keys.all;
 | 
						|
    };
 | 
						|
 | 
						|
    users.eta = {
 | 
						|
      isNormalUser = true;
 | 
						|
      extraGroups = [ "git" ];
 | 
						|
      openssh.authorizedKeys.keys = depot.users.eta.keys.whitby;
 | 
						|
    };
 | 
						|
 | 
						|
    users.cynthia = {
 | 
						|
      isNormalUser = true; # I'm normal OwO :3
 | 
						|
      extraGroups = [ "git" ];
 | 
						|
      openssh.authorizedKeys.keys = depot.users.cynthia.keys.all;
 | 
						|
    };
 | 
						|
 | 
						|
    users.firefly = {
 | 
						|
      isNormalUser = true;
 | 
						|
      extraGroups = [ "git" ];
 | 
						|
      openssh.authorizedKeys.keys = depot.users.firefly.keys.whitby;
 | 
						|
    };
 | 
						|
 | 
						|
    users.sterni = {
 | 
						|
      isNormalUser = true;
 | 
						|
      extraGroups = [ "git" "wheel" ];
 | 
						|
      openssh.authorizedKeys.keys = depot.users.sterni.keys.all;
 | 
						|
    };
 | 
						|
 | 
						|
    users.flokli = {
 | 
						|
      isNormalUser = true;
 | 
						|
      extraGroups = [ "git" ];
 | 
						|
      openssh.authorizedKeys.keys = depot.users.flokli.keys.all;
 | 
						|
    };
 | 
						|
 | 
						|
    # Temporarily disabled (inactive) users.
 | 
						|
    users.isomer = {
 | 
						|
      isNormalUser = true;
 | 
						|
      extraGroups = [ "git" ];
 | 
						|
      shell = "${pkgs.shadow}/bin/nologin";
 | 
						|
      openssh.authorizedKeys.keys = depot.users.isomer.keys.all;
 | 
						|
    };
 | 
						|
 | 
						|
    users.riking = {
 | 
						|
      isNormalUser = true;
 | 
						|
      extraGroups = [ "git" ];
 | 
						|
      shell = "${pkgs.shadow}/bin/nologin";
 | 
						|
      openssh.authorizedKeys.keys = depot.users.riking.keys.u2f ++ depot.users.riking.keys.passworded;
 | 
						|
    };
 | 
						|
  };
 | 
						|
 | 
						|
  environment.systemPackages = with pkgs; [
 | 
						|
    alacritty.terminfo
 | 
						|
    foot.terminfo
 | 
						|
    rxvt-unicode-unwrapped.terminfo
 | 
						|
 | 
						|
    # TODO(sterni): re-enable when the kitty build is fixed upstreams
 | 
						|
    # kitty.terminfo
 | 
						|
  ];
 | 
						|
}
 |