Convert some older nixos-system code
This commit is contained in:
parent
1a3c10ea78
commit
84bf6d0350
45 changed files with 1653 additions and 54 deletions
18
nix/modules/home/khs/shell/default.nix
Normal file
18
nix/modules/home/khs/shell/default.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ lib, ... }:
|
||||
{
|
||||
options.khscodes.khs.shell = {
|
||||
aliases = lib.mkOption {
|
||||
type = lib.types.attrsOf lib.types.str;
|
||||
description = "Shell aliases to be copied to different shells";
|
||||
default = {
|
||||
add = "git add";
|
||||
commit = "git commit";
|
||||
st = "git status";
|
||||
push = "git push";
|
||||
puff = "git puff";
|
||||
pull = "git pull";
|
||||
purr = "git purr";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue