dotfiles/lib/shared/home-manager.nix

27 lines
581 B
Nix
Raw Normal View History

2024-03-18 20:33:28 +00:00
{ inputs, pkgs, username, self, }: {
home.username = "${username}";
home.homeDirectory = "/home/${username}";
home.stateVersion = "22.05";
programs.home-manager.enable = true;
2024-05-02 11:54:05 +00:00
services.syncthing.enable = true;
2023-11-06 23:48:09 +00:00
imports = [
2024-03-18 20:33:28 +00:00
(import ./modules/neovim.nix { inherit inputs; })
2024-03-16 22:12:53 +00:00
./modules/bat.nix
./modules/bin.nix
./modules/direnv.nix
./modules/fzf.nix
2023-11-06 23:48:09 +00:00
./modules/git.nix
2024-03-16 22:12:53 +00:00
./modules/lsd.nix
./modules/nnn.nix
./modules/phpactor.nix
./modules/ripgrep.nix
2024-01-26 00:37:27 +00:00
./modules/starship.nix
2023-11-06 23:48:09 +00:00
./modules/tmux.nix
./modules/zsh.nix
];
}