22 lines
449 B
Nix

{pkgs, ...}: {
imports = [
../../modules/dev.nix
../../modules/firefox.nix
../../modules/fonts.nix
../../modules/foot.nix
../../modules/git.nix
../../modules/git_nixos.nix
../../modules/vscode.nix
../../modules/zellij
];
my.zsh.enable = true;
home.packages = with pkgs; [nvim-custom];
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
home.stateVersion = "21.05";
}