2024-03-18 20:33:28 +00:00
|
|
|
{ inputs, pkgs, username, self, }: {
|
2023-08-08 19:15:31 +00:00
|
|
|
home.username = "${username}";
|
|
|
|
home.homeDirectory = "/home/${username}";
|
|
|
|
|
|
|
|
home.stateVersion = "22.05";
|
|
|
|
|
|
|
|
programs.home-manager.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-05-02 16:29:35 +00:00
|
|
|
./modules/syncthing.nix
|
2023-11-06 23:48:09 +00:00
|
|
|
./modules/tmux.nix
|
|
|
|
./modules/zsh.nix
|
|
|
|
];
|
2023-08-08 19:15:31 +00:00
|
|
|
}
|