mirror of
				https://github.com/Stunkymonkey/nixos.git
				synced 2025-10-31 01:32:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
	
		
			861 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
	
		
			861 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| # An SSH server, using 'mosh'
 | |
| { config, lib, ... }:
 | |
| let
 | |
|   cfg = config.my.services.ssh-server;
 | |
| in
 | |
| {
 | |
|   options.my.services.ssh-server = {
 | |
|     enable = lib.mkEnableOption "SSH Server using 'mosh'";
 | |
|   };
 | |
| 
 | |
|   config = lib.mkIf cfg.enable {
 | |
|     services.openssh = {
 | |
|       # Enable the OpenSSH daemon.
 | |
|       enable = true;
 | |
|       # Be more secure
 | |
|       permitRootLogin = "no";
 | |
|       passwordAuthentication = false;
 | |
|     };
 | |
| 
 | |
|     # Opens the relevant UDP ports.
 | |
|     programs.mosh.enable = true;
 | |
| 
 | |
|     # WARNING: if you remove this, then you need to assign a password to your user, otherwise
 | |
|     # `sudo` won't work. You can do that either by using `passwd` after the first rebuild or
 | |
|     # by setting an hashed password in the `users.users.felix` block as `initialHashedPassword`.
 | |
|     # additionally needed by deploy-rs
 | |
|     security.sudo.wheelNeedsPassword = false;
 | |
|   };
 | |
| }
 | 
