Files
dotfiles/modules/min-pkgs.nix
natto1784 53b18802dd Remilia: updates
services: add znc and some random changes
networking: random changes
mailserver: add masti@weirdnatto.in
and some other misc changes
2022-03-09 10:53:07 +05:30

43 lines
801 B
Nix
Executable File

{ lib, config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
git
htop
vim
wireguard
vault
tree-sitter
rnix-lsp
nmap
gcc
fly
postgresql #for the client cli
];
programs = {
zsh = {
enable = true;
promptInit = "PROMPT='%B%F{cyan}%~ %F{blue}>%f%b '\nRPROMPT='%B%F{cyan}%n%f@%F{red}%m%b'";
histSize = 12000;
enableCompletion = true;
syntaxHighlighting.enable = true;
autosuggestions. enable = true;
ohMyZsh.enable = true;
};
gnupg = {
agent = {
enable = true;
pinentryFlavor = "curses";
};
};
};
nix = {
package = pkgs.nixUnstable;
extraOptions = ''
experimental-features = nix-command flakes
'';
trustedUsers = [ "root" ];
};
}