nix-config/configuration/pop-os/default.nix

20 lines
381 B
Nix
Raw Normal View History

2022-09-26 23:50:43 +01:00
{ config, lib, pkgs, ... }:
2022-09-21 10:01:26 +01:00
{
2022-09-26 23:50:43 +01:00
imports = [
../../home-manager/modules/common.nix
2022-09-27 18:30:42 +01:00
../../home-manager/modules/git.nix
../../home-manager/modules/home-manager.nix
../../home-manager/modules/tmux.nix
../../home-manager/modules/zsh.nix
2022-09-26 23:50:43 +01:00
];
2022-09-21 10:22:43 +01:00
2022-09-26 21:28:35 +01:00
fonts.fontconfig.enable = true;
home.packages = with pkgs; [
docker
docker-compose
jetbrains-mono
];
2022-09-21 10:01:26 +01:00
}