zsh
This commit is contained in:
@@ -1,6 +1,8 @@
|
|||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
#./packages.nix
|
#./packages.nix
|
||||||
|
./program.nix
|
||||||
|
./user.nix
|
||||||
./ssh.nix
|
./ssh.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
4
modules/core/program.nix
Normal file
4
modules/core/program.nix
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
{ pkgs, lib, ... }:
|
||||||
|
{
|
||||||
|
programs.zsh.enable = true;
|
||||||
|
}
|
||||||
@@ -1,9 +1,8 @@
|
|||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./hyprland
|
./hyprland
|
||||||
|
./zsh
|
||||||
./git.nix
|
./git.nix
|
||||||
./home-manager.nix
|
|
||||||
./packages.nix
|
./packages.nix
|
||||||
./user.nix
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
5
modules/home/zsh/default.nix
Normal file
5
modules/home/zsh/default.nix
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./zsh.nix
|
||||||
|
];
|
||||||
|
}
|
||||||
8
modules/home/zsh/zsh.nix
Normal file
8
modules/home/zsh/zsh.nix
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
programs.zsh = {
|
||||||
|
enable = true;
|
||||||
|
enableCompletion = true;
|
||||||
|
autosuggestion.enable = true;
|
||||||
|
syntaxHighlighting.enable = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user