From d5d6b340bd85fcf6d0a8a6b1199a4a6f27fa335b Mon Sep 17 00:00:00 2001 From: "Mohamed C." Date: Tue, 3 Mar 2026 12:06:10 +0100 Subject: [PATCH] homeModules instead of homemanagermodules --- modules/base/base.nix | 2 +- modules/base/git/git.nix | 2 +- modules/base/zsh/zsh.nix | 2 +- modules/gnome/gnome-de/gnome.nix | 2 +- modules/hosts/computer-mo/imports.nix | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/base/base.nix b/modules/base/base.nix index 3e27fed..850f0b2 100644 --- a/modules/base/base.nix +++ b/modules/base/base.nix @@ -15,7 +15,7 @@ ]; }; - flake.homeManagerModules.base = { ... }: { + flake.homeModules.base = { ... }: { imports = with config.flake.homeManagerModules; [ git zsh diff --git a/modules/base/git/git.nix b/modules/base/git/git.nix index 2edd43d..57ce029 100644 --- a/modules/base/git/git.nix +++ b/modules/base/git/git.nix @@ -1,5 +1,5 @@ { inputs, ... }: { - flake.homeManagerModules.git = { user, fullname, ... }: { + flake.homeModules.git = { user, fullname, ... }: { programs.git = { enable = true; userName = fullname; diff --git a/modules/base/zsh/zsh.nix b/modules/base/zsh/zsh.nix index c792c51..15d482f 100644 --- a/modules/base/zsh/zsh.nix +++ b/modules/base/zsh/zsh.nix @@ -10,7 +10,7 @@ users.defaultUserShell = pkgs.zsh; }; - flake.homeManagerModules.zsh = { ... }: { + flake.homeModules.zsh = { ... }: { home.file.".zshrc".source = ./dotfiles/zsh-config; }; } diff --git a/modules/gnome/gnome-de/gnome.nix b/modules/gnome/gnome-de/gnome.nix index 5de4ae7..300bf42 100644 --- a/modules/gnome/gnome-de/gnome.nix +++ b/modules/gnome/gnome-de/gnome.nix @@ -6,7 +6,7 @@ services.gnome.games.enable = false; }; - flake.homeManagerModules.gnome = { user, ... }: { + flake.homeModules.gnome = { user, ... }: { dconf.settings = { "org/gnome/shell/keybindings" = { focus-active-notification = []; diff --git a/modules/hosts/computer-mo/imports.nix b/modules/hosts/computer-mo/imports.nix index a8e656d..cbbb052 100644 --- a/modules/hosts/computer-mo/imports.nix +++ b/modules/hosts/computer-mo/imports.nix @@ -10,7 +10,7 @@ brave ]; - home-manager.users.${user}.imports = with config.flake.homeManagerModules; [ + home-manager.users.${user}.imports = with config.flake.homeModules; [ gnome ]; };