32 lines
		
	
	
		
			515 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			515 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { config
 | |
| , lib
 | |
| , pkgs
 | |
| , ...
 | |
| }:
 | |
| let
 | |
|   inherit (lib.my-namespace) enabled;
 | |
| in
 | |
| {
 | |
|   imports = [
 | |
|     # ../modules.nix
 | |
|   ];
 | |
|   my-namespace.home = {
 | |
|     stream-tools = enabled;
 | |
|     gnome-customizations = enabled;
 | |
|     # networking = enabled;
 | |
|     # personal-apps = enabled;
 | |
|     # suites.laptop = enabled;
 | |
|   };
 | |
|   home = {
 | |
|     packages = [
 | |
|       pkgs.nil
 | |
|       pkgs.steam
 | |
|       pkgs.gamemode
 | |
|       pkgs.beeper
 | |
|       pkgs.my-namespace.udev-steelseries
 | |
|       pkgs.qbittorrent
 | |
|       pkgs.vesktop
 | |
|       pkgs.obsidian
 | |
|     ];
 | |
|   };
 | |
| } |