Change-Id: I1d722c6d2e6192c445e77cb9b186a5320c2a60ec Reviewed-on: https://cl.tvl.fyi/c/depot/+/12485 Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			623 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			623 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| # Inject the right home-manager config for the machine.
 | |
| 
 | |
| { config, depot, pkgs, ... }:
 | |
| 
 | |
| {
 | |
|   users.users.tazjin = {
 | |
|     isNormalUser = true;
 | |
|     createHome = true;
 | |
|     extraGroups = [ "wheel" "networkmanager" "video" "adbusers" "yggdrasil" ];
 | |
|     uid = 1000;
 | |
|     shell = pkgs.fish;
 | |
|     initialHashedPassword = "$2b$05$1eBPdoIgan/C/L8JFqIHBuVscQyTKw1L/4VBlzlLvLBEf6CXS3EW6";
 | |
|   };
 | |
| 
 | |
|   nix.settings.trusted-users = [ "tazjin" ];
 | |
| 
 | |
|   home-manager.backupFileExtension = "backup";
 | |
|   home-manager.useGlobalPkgs = true;
 | |
|   home-manager.users.tazjin = with depot.users.tazjin;
 | |
|     home."${config.networking.hostName}" or home.shared;
 | |
| }
 |