system/home-manager: move imports into module and follow new name

This commit is contained in:
LavaDesu 2025-03-09 19:11:34 +11:00
parent f071579f58
commit c5079d7909
Signed by: cilly
GPG key ID: 6500251E087653C9
3 changed files with 3 additions and 2 deletions

View file

@ -9,7 +9,6 @@
};
imports = with modules.system; [
inputs.home-manager.nixosModule
home-manager
audio

View file

@ -11,7 +11,6 @@
wpa_conf.file = ../../secrets/wpa_conf.age;
};
imports = with modules.system; [
inputs.home-manager.nixosModule
home-manager
aagl

View file

@ -1,4 +1,7 @@
{ config, enableGUI, inputs, modules, ... }: {
imports = [
inputs.home-manager.nixosModules.home-manager
];
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;