This commit is contained in:
iFargle 2023-09-19 11:21:34 +09:00
parent 595e88e595
commit c26bfda406
2 changed files with 3 additions and 4 deletions

View file

@ -14,6 +14,9 @@
}; };
imports = [ imports = [
# Doom-Emacs input import
inputs.doom-emacs.hmModule
# Common configs # Common configs
./common/software/cli ./common/software/cli

View file

@ -12,7 +12,6 @@
extraSpecialArgs = { inherit inputs outputs desktop hostname platform username hmStateVersion theme; }; extraSpecialArgs = { inherit inputs outputs desktop hostname platform username hmStateVersion theme; };
modules = [ modules = [
../home-manager ../home-manager
inputs.doom-emacs.hmModule
]; ];
}; };
@ -56,9 +55,6 @@
home-manager.useGlobalPkgs = true; home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true; home-manager.useUserPackages = true;
home-manager.users."$username" = import ../home-manager; home-manager.users."$username" = import ../home-manager;
imports = [
inputs.doom-emacs.hmModule
];
} }
]; ];
}; };