mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 21:01:34 +01:00
Reshuffle modules a bit
This commit is contained in:
parent
211ca98e92
commit
a8f9d8108d
9 changed files with 15 additions and 15 deletions
|
|
@ -5,7 +5,7 @@
|
|||
...
|
||||
}:
|
||||
{
|
||||
config = lib.mkIf config.custom.shell.zsh.enable {
|
||||
config = lib.mkIf config.custom.programs.shell.zsh.enable {
|
||||
home.packages = [
|
||||
pkgs.eza
|
||||
pkgs.bat
|
||||
|
|
|
|||
|
|
@ -5,9 +5,9 @@
|
|||
...
|
||||
}:
|
||||
{
|
||||
options.custom.shell.zsh.enable = lib.mkEnableOption "";
|
||||
options.custom.programs.shell.zsh.enable = lib.mkEnableOption "";
|
||||
|
||||
config = lib.mkIf config.custom.shell.zsh.enable {
|
||||
config = lib.mkIf config.custom.programs.shell.zsh.enable {
|
||||
programs = {
|
||||
zsh = {
|
||||
enable = true;
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
...
|
||||
}:
|
||||
{
|
||||
config = lib.mkIf config.custom.shell.zsh.enable {
|
||||
config = lib.mkIf config.custom.programs.shell.zsh.enable {
|
||||
programs.zsh = {
|
||||
plugins = [
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue