20 lines
203 B
Nix
20 lines
203 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
imports = [
|
|
./git.nix
|
|
./vscodium.nix
|
|
./python.nix
|
|
./godot.nix
|
|
./openssl.nix
|
|
];
|
|
home.packages = with pkgs; [
|
|
bc
|
|
imagemagick
|
|
];
|
|
}
|