Reimplement home manager files
This commit is contained in:
parent
5f8cbf469b
commit
d333524003
11 changed files with 101 additions and 60 deletions
13
.config/nix/home/zsh.nix
Normal file
13
.config/nix/home/zsh.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ ... }:
|
||||
{
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
enableCompletion = true;
|
||||
syntaxHighlighting.enable = true;
|
||||
shellAliases = {
|
||||
ls = "ls --color=auto -F";
|
||||
nixswitch = "pushd ~/.config/nix; darwin-rebuild switch --flake .#";
|
||||
nixup = "pushd ~/.config/nix; nix flake update";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue