Basic libinput gestures + structured shell aliases
This commit is contained in:
parent
2d6084b28a
commit
1f49192ab3
6 changed files with 68 additions and 19 deletions
11
modules/shell_aliases.nix
Normal file
11
modules/shell_aliases.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{ pkgs, ... }:
|
||||
let
|
||||
shellAliases = {
|
||||
"sc" = "systemctl";
|
||||
"scu" = "systemctl --user";
|
||||
};
|
||||
in
|
||||
{
|
||||
programs.bash = { inherit shellAliases; };
|
||||
programs.zsh = { inherit shellAliases; };
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue