refactor: delete old Ansible configuration

- Remove the Ansible files.
- Move the Nix files to the root level of the repository.

Refs: #39
This commit is contained in:
Oliver Davies 2022-12-20 19:58:39 +00:00
parent a2bded636e
commit 7235dc60dd
98 changed files with 28 additions and 1660 deletions

18
nixos/apollo/default.nix Normal file
View file

@ -0,0 +1,18 @@
{ config, lib, pkgs, ... }:
{
imports = [
# ./configuration.nix
# ../../../home-manager/modules/common.nix
# ../../../home-manager/modules/git.nix
# ../../../home-manager/modules/home-manager.nix
# ../../../home-manager/modules/tmux.nix
# ../../../home-manager/modules/zsh.nix
];
home.packages = with pkgs; [
docker
docker-compose
];
}