dotfiles/configuration/pop-os/default.nix
Oliver Davies 0d25b9348e chore: remove Docker and Docker Compose
When using Docker from the Nix store, I couldn't connect to it so I
uninstalled it and added it using the https://get.docker.com script.

I'm no longer using Docker Compose v1, so I can also remove the
`docker-compose` package.
2023-01-13 01:39:19 +00:00

18 lines
351 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [
../../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
];
fonts.fontconfig.enable = true;
home.packages = with pkgs; [
jetbrains-mono
];
}