dotfiles/configuration/pop-os/default.nix

24 lines
435 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [
../../home-manager/modules/alacritty.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; [
docker
docker-compose
jetbrains-mono
just
neovim
];
programs.bat.enable = true;
}