This commit is contained in:
Lilith 2024-07-02 00:36:15 +02:00
parent fc749306a0
commit 6b2d319deb
Signed by: lilith
GPG key ID: 8712A0F317C37175
2 changed files with 14 additions and 0 deletions

View file

@ -7,6 +7,8 @@
./rofi.nix
./dunst.nix
./stylix.nix
./env.nix
./alacritty.nix
./clipman.nix

12
home/env.nix Normal file
View file

@ -0,0 +1,12 @@
{conf, config,...}: {
home = {
file.inbox.source = config.lib.file.mkOutOfStoreSymLink "/home/${conf.user}/sync/inbox";
shellAliases = [
cat = "bat -p"
ls = "eza"
ll = "eza -l"
la = "eza -la"
];
};
}