dev first commit

This commit is contained in:
Julian Sutter 2023-03-20 21:56:24 -07:00
parent 54e654d1cc
commit a20ddd638f
2 changed files with 16 additions and 0 deletions

View file

@ -19,6 +19,7 @@
./systems/framework.nix ./systems/framework.nix
./users/jsutter.nix ./users/jsutter.nix
./modules/plasma.nix ./modules/plasma.nix
./modules/dev.nix
]; ];
}; };
aurora = nixpkgs.lib.nixosSystem { aurora = nixpkgs.lib.nixosSystem {

15
modules/dev.nix Normal file
View file

@ -0,0 +1,15 @@
{ config, pkgs, ... }:
{
let
my-python-packages = p: with p; [
pandas
requests
# other python packages
];
in
environment.systemPackages = [
(pkgs.python3.withPackages my-python-packages)
nodejs
];
}