diff options
| author | Mathias Magnusson <mathias@magnusson.space> | 2025-11-23 13:28:05 +0100 |
|---|---|---|
| committer | Mathias Magnusson <mathias@magnusson.space> | 2025-11-23 13:28:05 +0100 |
| commit | dea8740e0d09e503a2090a48630826dc2c57d658 (patch) | |
| tree | b5d91988149ce646da85da262e16d95641a2a692 | |
| parent | 3c214d788e671e867231d30374465f14969c46dd (diff) | |
| download | oden-dea8740e0d09e503a2090a48630826dc2c57d658.tar.gz | |
make shell nicer
| -rw-r--r-- | configuration.nix | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/configuration.nix b/configuration.nix index 8c68e31..8fdb97f 100644 --- a/configuration.nix +++ b/configuration.nix @@ -50,7 +50,18 @@ virtualisation.docker.enable = true; oden.persist.directories = [ "/var/lib/docker" ]; - programs.fish.enable = true; + programs.fish = { + enable = true; + shellAliases = { + e = "nvim"; + lg = "lazygit"; + }; + }; + + programs.lazygit = { + enable = true; + settings.git.autoFetch = false; + }; environment.systemPackages = with pkgs; [ neovim |
