mirror of
				https://forge.katzen.cafe/schrottkatze/nix-configs.git
				synced 2025-10-31 01:27:57 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			37 lines
		
	
	
	
		
			571 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
	
		
			571 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { pkgs, ... }:
 | |
| {
 | |
|   imports = [
 | |
|     ./xwayland-sat.nix
 | |
|     ./screenshot.nix
 | |
|     ./input.nix
 | |
|     ./binds.nix
 | |
|     ./style.nix
 | |
|     ./privacy.nix
 | |
|     ./quirks.nix
 | |
|   ];
 | |
|   programs.niri.settings = {
 | |
|     outputs."eDP-1" = {
 | |
|       scale = 1.0;
 | |
|     };
 | |
| 
 | |
|     spawn-at-startup = [
 | |
|       {
 | |
|         command = [
 | |
|           "eww"
 | |
|           "open-many"
 | |
|           "topBar"
 | |
|           "bottomBar"
 | |
|         ];
 | |
|       }
 | |
|       {
 | |
|         command = [
 | |
|           "${pkgs.swaybg}/bin/swaybg"
 | |
|           "-i"
 | |
|           "${./wallpaper.jpg}"
 | |
|           "-m"
 | |
|           "fill"
 | |
|         ];
 | |
|       }
 | |
|     ];
 | |
|   };
 | |
| }
 | 
