whoops forogt pkgs

Main
Johannes Hendrik Gerard van der Weide 2024-03-06 11:04:28 +01:00
parent 74e923f0d3
commit 60b1465c85
2 changed files with 15 additions and 0 deletions

View File

@ -2,6 +2,7 @@
imports = [
./hardware-configuration.nix
./nixos.nix
./packages.nix
./ssh.nix
./comin.nix
];

14
system/packages.nix Normal file
View File

@ -0,0 +1,14 @@
{ pkgs, ... }:
{
environment = {
# Systemwide installed packages
systemPackages = with pkgs; [
iftop
openssl
git
btop
];
};
}