add lorri and direnv

This commit is contained in:
cswimr 2024-11-18 14:27:31 -05:00
parent 54fcd874f1
commit 9f5bae49e4
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087
4 changed files with 17 additions and 5 deletions

10
nixos/development.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs, ... }: {
services.lorri = {
enable = true;
};
environment.systemPackages = with pkgs; [
direnv
];
}

View file

@ -28,6 +28,7 @@
ohMyZsh = {
enable = true;
theme = "agnoster";
plugins = [ "git" "direnv"];
};
shellAliases = let ezaArgs = "--time-style='+%Y-%m-%d %H:%M' --icons";