First work

This commit is contained in:
Florian RICHER 2024-05-27 22:23:32 +02:00
parent be2affebef
commit b86a8b50c7
20 changed files with 138 additions and 148 deletions

View file

@ -2,10 +2,10 @@
with lib;
let
cfg = config.modules.cli.atuin;
cfg = config.homeModules.shell.atuin;
in
{
options.modules.cli.atuin = {
options.homeModules.shell.atuin = {
enable = mkEnableOption ''
Enable atuin with my custom configurations
'';

View file

@ -2,10 +2,10 @@
with lib;
let
cfg = config.modules.cli.direnv;
cfg = config.homeModules.shell.direnv;
in
{
options.modules.cli.direnv = {
options.homeModules.shell.direnv = {
enable = mkEnableOption ''
Enable direnv with my custom configurations
'';

View file

@ -2,10 +2,10 @@
with lib;
let
cfg = config.modules.cli.git;
cfg = config.homeModules.shell.git;
in
{
options.modules.cli.git = {
options.homeModules.shell.git = {
enable = mkEnableOption ''
Enable git with my custom configurations
'';

View file

@ -2,10 +2,10 @@
with lib;
let
cfg = config.modules.cli.zsh;
cfg = config.homeModules.shell.zsh;
in
{
options.modules.cli.zsh = {
options.homeModules.shell.zsh = {
enable = mkEnableOption ''
Enable zsh with my custom configurations
'';