chore: Simplify

- Removed unused conditional
- Changed `attrValues` to `with` where possible
This commit is contained in:
Donovan Glover 2024-09-09 13:24:50 -04:00
parent fc11acbe79
commit 7393e7c0d6
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 16 additions and 18 deletions

View File

@ -20,23 +20,21 @@ in
];
};
home-manager.sharedModules = attrValues {
inherit (self.homeModules)
dconf
eza
fish
git
gpg
gtk
htop
kitty
librewolf
neovim
starship
xdg-user-dirs
xresources
;
};
home-manager.sharedModules = with self.homeModules; [
dconf
eza
fish
git
gpg
gtk
htop
kitty
librewolf
neovim
starship
xdg-user-dirs
xresources
];
modules = {
system = {

View File

@ -89,7 +89,7 @@ in
enable = true;
excludePackages = with pkgs; [ xterm ];
displayManager.startx.enable = mkIf (!isContainer) true;
displayManager.startx.enable = true;
};
pipewire = {