mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-08 01:14:01 +01:00
phone: Only import needed home-manager modules
Now that hyprland is confirmed to be a no-go for the phone, this commit begins making the system closure smaller.
This commit is contained in:
parent
e36fcaf2c6
commit
939cdb90e9
@ -6,7 +6,25 @@ in
|
||||
{
|
||||
imports = attrValues self.nixosModules;
|
||||
nixpkgs.overlays = attrValues self.overlays;
|
||||
home-manager.sharedModules = attrValues self.homeManagerModules;
|
||||
|
||||
home-manager.sharedModules = attrValues {
|
||||
inherit (self.homeManagerModules)
|
||||
eza
|
||||
fcitx
|
||||
fish
|
||||
git
|
||||
gpg
|
||||
gtk
|
||||
htop
|
||||
librewolf
|
||||
neovim
|
||||
starship
|
||||
thunar
|
||||
xdg-user-dirs
|
||||
xresources
|
||||
;
|
||||
};
|
||||
|
||||
environment.systemPackages = attrValues self.packages.${pkgs.system};
|
||||
|
||||
modules = {
|
||||
|
Loading…
Reference in New Issue
Block a user