mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 08:14:00 +01:00
chore: Simplify
- Removed unused conditional - Changed `attrValues` to `with` where possible
This commit is contained in:
parent
fc11acbe79
commit
7393e7c0d6
@ -20,8 +20,7 @@ in
|
||||
];
|
||||
};
|
||||
|
||||
home-manager.sharedModules = attrValues {
|
||||
inherit (self.homeModules)
|
||||
home-manager.sharedModules = with self.homeModules; [
|
||||
dconf
|
||||
eza
|
||||
fish
|
||||
@ -35,8 +34,7 @@ in
|
||||
starship
|
||||
xdg-user-dirs
|
||||
xresources
|
||||
;
|
||||
};
|
||||
];
|
||||
|
||||
modules = {
|
||||
system = {
|
||||
|
@ -89,7 +89,7 @@ in
|
||||
enable = true;
|
||||
excludePackages = with pkgs; [ xterm ];
|
||||
|
||||
displayManager.startx.enable = mkIf (!isContainer) true;
|
||||
displayManager.startx.enable = true;
|
||||
};
|
||||
|
||||
pipewire = {
|
||||
|
Loading…
Reference in New Issue
Block a user