add host Remilia

This commit is contained in:
2021-05-31 02:48:14 +05:30
parent 8952fafe65
commit 02fa695a0f
25 changed files with 98 additions and 32 deletions

51
hosts/personal/pkgs.nix Normal file
View File

@@ -0,0 +1,51 @@
{lib, config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
bc
gnumake
pciutils
git
ntfs3g
python3
htop
nodejs
wineWowPackages.staging
wget
ripgrep
kbd
cachix
gcc
rustc
jdk
];
programs = {
steam.enable = true;
gnupg = {
agent = {
enableSSHSupport = true;
enable = true;
pinentryFlavor = "curses";
};
};
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;
};
dconf.enable = true;
adb.enable = true;
};
nix = {
package = pkgs.nixUnstable;
extraOptions = ''
experimental-features = nix-command ca-references flakes
'';
trustedUsers = [ "root" "natto" ];
};
}