2024-11-15 12:19:35 +00:00
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
|
|
|
|
{
|
2024-11-15 17:56:08 +00:00
|
|
|
imports = [
|
|
|
|
<nixpkgs/nixos/modules/virtualisation/openstack-config.nix>
|
|
|
|
./gandicloud.nix
|
|
|
|
./forgejo.nix
|
|
|
|
];
|
2024-11-15 12:19:35 +00:00
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
vim
|
|
|
|
gnumake
|
|
|
|
git tig
|
|
|
|
wget
|
|
|
|
];
|
2024-11-15 21:18:48 +00:00
|
|
|
|
2024-11-15 21:31:37 +00:00
|
|
|
networking.firewall.enable = false;
|
2024-11-15 12:19:35 +00:00
|
|
|
}
|