Add ben module

This commit is contained in:
Ivan Malison 2024-05-28 20:55:02 -06:00
parent b5fb07519c
commit 77cf8d46a3
2 changed files with 14 additions and 0 deletions

13
nixos/ben.nix Normal file
View File

@ -0,0 +1,13 @@
{ pkgs, inputs, config, makeEnable, ... }:
makeEnable config "modules.ben" true {
home-manager.users.ben = {
programs.zsh = {
enable = true;
shellAliases = {
ll = "ls -alF";
la = "ls -A";
l = "ls -CF";
};
};
};
}

View File

@ -3,6 +3,7 @@
imports = [
./android.nix
./base.nix
./ben.nix
./cache-server.nix
./cache.nix
./code.nix