mirror of
https://github.com/RGBCube/ncc
synced 2026-01-21 12:41:13 +00:00
- No more fail2ban. It didn't work properly anyways, I'll need to look into this in the future - No nix-super. I don't need it and the overlay is broken so I'm waiting for that to be fixed first. - Uses nh instead of nixos-rebuild. This is much better.
16 lines
259 B
Nix
16 lines
259 B
Nix
{ lib, pkgs, ... }: with lib; merge
|
|
|
|
(systemConfiguration {
|
|
environment.shellAliases = {
|
|
venv = "virtualenv venv";
|
|
};
|
|
})
|
|
|
|
(systemPackages (with pkgs; [
|
|
(python311.withPackages (pkgs: with pkgs; [
|
|
pip
|
|
requests
|
|
]))
|
|
virtualenv
|
|
poetry
|
|
]))
|