summary refs log blame commit diff stats
path: root/sys/packages/default.nix
blob: 989bff3b55a9b68ec6766cacc192b12b435dea82 (plain) (tree)
1
2
3
4
5
6
7
8
9
10



          
                                           
                                   
                                      


                                
                    
 
                                          
                    
 

                       
 
                                                         
                                  
 
                                              
                                                                      
    
 
{
  pkgs,
  ragenix,
  ...
}: {
  environment.systemPackages = with pkgs; [
    # Core utils
    killall # kill programs by name
    wget # download stuff
    curl # download stuff – reloaded
    zsh # the one and only shell

    neovim # edit nix files ;)

    restic # backups

    gnome.simple-scan # scanning, obiously
    git # versioning

    # SSH Stuff
    openssh # ssh
    mosh # ssh in great

    libsForQt5.kdeconnect-kde # communicate with my phone
    nerdfonts # nice fonts, u know

    zsh-you-should-use # reminder for aliasses

    ragenix.packages.${pkgs.system}.default # system secret management
  ];
}