dotfiles/nixos/apollo/default.nix
Oliver Davies 7235dc60dd refactor: delete old Ansible configuration
- Remove the Ansible files.
- Move the Nix files to the root level of the repository.

Refs: #39
2022-12-20 20:00:28 +00:00

19 lines
374 B
Nix

{ 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
];
}