mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 18:41:34 +01:00
Rename the namespace of the home-modules
This commit is contained in:
parent
06623cd93a
commit
f0df314f21
25 changed files with 74 additions and 68 deletions
|
|
@ -5,7 +5,7 @@
|
|||
...
|
||||
}:
|
||||
{
|
||||
config = lib.mkIf config.myConfig.shell.zsh.enable {
|
||||
config = lib.mkIf config.custom.shell.zsh.enable {
|
||||
home.packages = [
|
||||
pkgs.eza
|
||||
pkgs.bat
|
||||
|
|
@ -28,7 +28,7 @@
|
|||
dark = "";
|
||||
light = "GitHub";
|
||||
}
|
||||
.${config.myConfig.theme};
|
||||
.${config.custom.theme};
|
||||
in
|
||||
{
|
||||
cat = "bat --plain --theme=${theme}";
|
||||
|
|
|
|||
|
|
@ -5,9 +5,9 @@
|
|||
...
|
||||
}:
|
||||
{
|
||||
options.myConfig.shell.zsh.enable = lib.mkEnableOption "";
|
||||
options.custom.shell.zsh.enable = lib.mkEnableOption "";
|
||||
|
||||
config = lib.mkIf config.myConfig.shell.zsh.enable {
|
||||
config = lib.mkIf config.custom.shell.zsh.enable {
|
||||
programs = {
|
||||
zsh = {
|
||||
enable = true;
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
...
|
||||
}:
|
||||
{
|
||||
config = lib.mkIf config.myConfig.shell.zsh.enable {
|
||||
config = lib.mkIf config.custom.shell.zsh.enable {
|
||||
programs.zsh = {
|
||||
plugins = [
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue