forked from natto1784/dotfiles
added host Marisa (haven't tested config yet)
This commit is contained in:
42
marisa/pkgs.nix
Normal file
42
marisa/pkgs.nix
Normal file
@@ -0,0 +1,42 @@
|
||||
{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" ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user