26 lines
638 B
Nix
26 lines
638 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
|
|
|
|
# Dotspace
|
|
../../dotspace/configuration.nix
|
|
../../nixos/features/stronghold-binary-cache.nix
|
|
|
|
# Users
|
|
../../users/lauren_lagarde/configuration.nix
|
|
|
|
# Docker Host Stuff
|
|
../../tweaks/disable_firewall.nix
|
|
../../features/virtualization/docker.nix
|
|
../../features/virtualization/dockge.nix
|
|
];
|
|
}
|