mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-12 11:36:20 +00:00
refactor: make the whole thing more generic
This commit is contained in:
19
modules/home-manager/default.nix
Normal file
19
modules/home-manager/default.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{ username, desktop, stateVersion, osConfig, inputs, ... }: {
|
||||
home = {
|
||||
stateVersion = osConfig.system.stateVersion;
|
||||
inherit username;
|
||||
homeDirectory = "/home/${username}";
|
||||
};
|
||||
imports = [
|
||||
inputs.ags.homeManagerModules.default
|
||||
inputs.nixvim.homeManagerModules.nixvim
|
||||
inputs.anyrun.homeManagerModules.default
|
||||
./clean-home-dir.nix
|
||||
./programs/neovide.nix
|
||||
# ./default-apps.nix
|
||||
./packages
|
||||
./programs
|
||||
./services
|
||||
./desktops/hyprland
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user