mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-02-16 17:50:52 +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 {
|
home-manager.sharedModules = with self.homeModules; [
|
||||||
inherit (self.homeModules)
|
|
||||||
dconf
|
dconf
|
||||||
eza
|
eza
|
||||||
fish
|
fish
|
||||||
@ -35,8 +34,7 @@ in
|
|||||||
starship
|
starship
|
||||||
xdg-user-dirs
|
xdg-user-dirs
|
||||||
xresources
|
xresources
|
||||||
;
|
];
|
||||||
};
|
|
||||||
|
|
||||||
modules = {
|
modules = {
|
||||||
system = {
|
system = {
|
||||||
|
@ -89,7 +89,7 @@ in
|
|||||||
enable = true;
|
enable = true;
|
||||||
excludePackages = with pkgs; [ xterm ];
|
excludePackages = with pkgs; [ xterm ];
|
||||||
|
|
||||||
displayManager.startx.enable = mkIf (!isContainer) true;
|
displayManager.startx.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
pipewire = {
|
pipewire = {
|
||||||
|
Loading…
Reference in New Issue
Block a user