also move hyprland.conf -> hyprland.nix Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
		
			
				
	
	
		
			40 lines
		
	
	
		
			563 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			563 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ ... }:
 | 
						|
{
 | 
						|
  home = {
 | 
						|
    homeDirectory = "/home/natto";
 | 
						|
    username = "natto";
 | 
						|
    stateVersion = "22.11";
 | 
						|
  };
 | 
						|
 | 
						|
  imports = [
 | 
						|
    ./email.nix
 | 
						|
    ./pass.nix
 | 
						|
    ./browser.nix
 | 
						|
    ./pdf.nix
 | 
						|
    ./mpv.nix
 | 
						|
    ./pkgs.nix
 | 
						|
    ./stuff.nix
 | 
						|
    ./gtk.nix
 | 
						|
    ./dunst.nix
 | 
						|
    ./git.nix
 | 
						|
    ./music.nix
 | 
						|
    ./zsh.nix
 | 
						|
    ./games.nix
 | 
						|
    ./cursor.nix
 | 
						|
    ./emacs.nix
 | 
						|
 | 
						|
    # when xserver
 | 
						|
    # ./xsession.nix
 | 
						|
 | 
						|
    # when wayland
 | 
						|
    ./wayland.nix
 | 
						|
    ./hyprpaper.nix
 | 
						|
    ./hyprlock.nix
 | 
						|
    ./hypridle.nix
 | 
						|
    ./hyprland.nix
 | 
						|
    ./foot.nix
 | 
						|
    ./tofi.nix
 | 
						|
    ./ags
 | 
						|
  ];
 | 
						|
}
 |