19 lines
384 B
Nix
19 lines
384 B
Nix
|
{ self, config, home-manager, lib, pkgs, inputs, ... }:
|
||
|
let
|
||
|
psCfg = config.pub-solar;
|
||
|
in
|
||
|
{
|
||
|
# Sets nrdxp.cachix.org binary cache which just speeds up some builds
|
||
|
imports = [ ../cachix ];
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
python39Full
|
||
|
python39Packages.pyyaml
|
||
|
remmina
|
||
|
vscode
|
||
|
vscode-extensions.golang.go
|
||
|
vscode-extensions.ms-python.python
|
||
|
];
|
||
|
|
||
|
}
|