31 lines
		
	
	
	
		
			575 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			575 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { config, lib, pkgs, ... }:
 | |
| 
 | |
| with lib;
 | |
| let
 | |
|   cfg = config.qenya.base-graphical;
 | |
| in
 | |
| {
 | |
|   imports = [
 | |
|     ./gnome.nix
 | |
|     ./sound.nix
 | |
|   ];
 | |
| 
 | |
|   options.qenya.base-graphical.enable = mkEnableOption "Base configuration for graphical environments";
 | |
| 
 | |
|   config = mkIf cfg.enable {
 | |
|     services.xserver.enable = true;
 | |
|     services.libinput.enable = true;
 | |
|     services.printing.enable = true;
 | |
|     services.avahi = {
 | |
|       enable = true;
 | |
|       nssmdns4 = true;
 | |
|       openFirewall = true;
 | |
|     };
 | |
| 
 | |
|     fonts.packages = with pkgs; [
 | |
|       corefonts
 | |
|       caladea
 | |
|       carlito
 | |
|     ];
 | |
|   };
 | |
| }
 |