mirror of
				https://github.com/Stunkymonkey/nixos.git
				synced 2025-10-31 01:32:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			46 lines
		
	
	
	
		
			591 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
	
		
			591 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { pkgs, ... }:
 | |
| {
 | |
|   # Packages
 | |
|   environment.systemPackages = with pkgs; [
 | |
|     bandwhich
 | |
|     bind # dig
 | |
|     borgbackup
 | |
|     cryptsetup
 | |
|     fd # find replacement
 | |
|     file
 | |
|     fzf
 | |
|     gettext
 | |
|     git
 | |
|     gitAndTools.delta
 | |
|     gnufdisk
 | |
|     gptfdisk
 | |
|     htop
 | |
|     jq
 | |
|     killall
 | |
|     lsof
 | |
|     mosh
 | |
|     mtr
 | |
|     multipath-tools # kpartx
 | |
|     nmap
 | |
|     nmon
 | |
|     ouch # de-/compress
 | |
|     pciutils
 | |
|     progress
 | |
|     pv
 | |
|     reptyr
 | |
|     rsync
 | |
|     screen
 | |
|     sd # sed replacement
 | |
|     stress-ng
 | |
|     tmux
 | |
|     unzip
 | |
|     usbutils
 | |
|     vim
 | |
|     wget
 | |
|     whois
 | |
|     xcp
 | |
|     zip
 | |
|   ];
 | |
| 
 | |
|   time.timeZone = "Europe/Berlin";
 | |
| }
 | 
