Marisa: removed initrd kernel modules that are not required

This commit is contained in:
2021-05-25 23:34:11 +05:30
parent a22f0e6bc7
commit 94ed8dba17
16 changed files with 135 additions and 191 deletions

View File

@@ -1,19 +1,16 @@
{lib, config, pkgs, ...}:
{
environment.systemPackages = with pkgs; [
p7zip
git
gnumake
neofetch
kbd
htop
vim
wget
libraspberrypi
];
programs = {
zsh = {
enable = true;
promptInit = "PROMPT='%F{cyan}%~ %F{blue}>%f '\nRPROMPT='%F{cyan}%n%f@%F{red}%m'";
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;
@@ -23,6 +20,7 @@
gnupg = {
agent = {
enable = true;
pinentryFlavor = "curses";
};
};
};
@@ -31,6 +29,6 @@
extraOptions = ''
experimental-features = nix-command ca-references flakes
'';
trustedUsers = [ "root" "ottan" ];
trustedUsers = [ "root" ];
};
}