mlaga97-nixos/systems/vm-docker-host/vm-docker-host-base.nix

27 lines
609 B
Nix

{ ... }: {
imports = [
# Core Features
../features/base.nix
../features/tui-apps.nix
../features/openssh-server.nix
# Core Tweaks
../tweaks/zram.nix
../tweaks/enable_flakes.nix
../tweaks/disable_nixos_user.nix
../tweaks/systemd-resolved_nonsense.nix
# Lauren Base
../users/lauren_lagarde/lauren_lagarde.nix
# Dotspace
../../secrets/dotspace.nix
../../features/stronghold-binary-cache.nix
# Docker Host Stuff
../../tweaks/disable_firewall.nix
../../features/virtualization/docker.nix
../../features/virtualization/dockge.nix
];
}