43 lines
825 B
Nix
43 lines
825 B
Nix
{lib, config, pkgs, ...}:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
xclip
|
|
xorg.xkbcomp
|
|
p7zip
|
|
git
|
|
gnumake
|
|
neofetch
|
|
htop
|
|
feh
|
|
st
|
|
dwm
|
|
vim
|
|
wget
|
|
];
|
|
programs = {
|
|
zsh = {
|
|
enable = true;
|
|
promptInit = "PROMPT='%F{cyan}%~ %F{blue}>%f '\nRPROMPT='%F{cyan}%n%f@%F{red}%m'";
|
|
histSize = 12000;
|
|
enableCompletion = true;
|
|
syntaxHighlighting.enable = true;
|
|
autosuggestions. enable = true;
|
|
ohMyZsh.enable = true;
|
|
};
|
|
gnupg = {
|
|
agent = {
|
|
enableSSHSupport = true;
|
|
enable = true;
|
|
pinentryFlavor = "curses";
|
|
};
|
|
};
|
|
};
|
|
nix = {
|
|
package = pkgs.nixUnstable;
|
|
extraOptions = ''
|
|
experimental-features = nix-command ca-references flakes
|
|
'';
|
|
trustedUsers = [ "root" "ottan" ];
|
|
};
|
|
}
|