Oliver Davies
53b8745b34
v0.2.6 contained fixes for trunk-based development workflows that don't require being on a separate branch. https://github.com/quodlibetor/git-instafix/releases/tag/v0.2.6
37 lines
756 B
Nix
37 lines
756 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
username,
|
|
self,
|
|
}:
|
|
let
|
|
pkgsUnstable = inputs.nixpkgs-unstable.legacyPackages.${pkgs.system};
|
|
in
|
|
{
|
|
home.username = "${username}";
|
|
home.homeDirectory = "/home/${username}";
|
|
|
|
home.stateVersion = "22.05";
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
imports = [
|
|
(import ./modules/git.nix { inherit inputs pkgs pkgsUnstable; })
|
|
(import ./modules/neovim.nix { inherit inputs; })
|
|
./modules/atuin.nix
|
|
./modules/bat.nix
|
|
./modules/bin.nix
|
|
./modules/direnv.nix
|
|
./modules/fzf.nix
|
|
./modules/lsd.nix
|
|
./modules/nnn.nix
|
|
./modules/phpactor.nix
|
|
./modules/ripgrep.nix
|
|
./modules/starship.nix
|
|
./modules/syncthing.nix
|
|
./modules/tmux.nix
|
|
./modules/wezterm.nix
|
|
./modules/zsh.nix
|
|
];
|
|
}
|