Restructure home and system modules

This commit is contained in:
Florian RICHER 2024-05-27 22:40:30 +02:00
parent b86a8b50c7
commit a03355b3a1
35 changed files with 82 additions and 82 deletions

View file

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

View file

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

View file

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

View file

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