Skip to content

Commit

Permalink
add git, htop and btm
Browse files Browse the repository at this point in the history
  • Loading branch information
cyber-murmel committed Apr 7, 2022
1 parent 49745e3 commit aabc478
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions nixos/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@
boot.loader.grub.enable = false;

environment.systemPackages = with pkgs; [
screen
vim
htop bottom
git
libgpiod gpio-utils
i2c-tools
evtest
screen
vim
(python39.withPackages(ps: with ps;[
adafruit-pureio
pyserial
Expand Down Expand Up @@ -35,7 +37,8 @@
getty.autologinUser = "nixos";
openssh = {
enable = true;
passwordAuthentication = false;
# enable password authentication if no public key is set
passwordAuthentication = if config.users.extraUsers.nixos.openssh.authorizedKeys.keys == [] then true else false;
permitRootLogin = "no";
};
udev = {
Expand Down

0 comments on commit aabc478

Please sign in to comment.