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,23 +20,21 @@ in
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
home-manager.sharedModules = attrValues {
|
home-manager.sharedModules = with self.homeModules; [
|
||||||
inherit (self.homeModules)
|
dconf
|
||||||
dconf
|
eza
|
||||||
eza
|
fish
|
||||||
fish
|
git
|
||||||
git
|
gpg
|
||||||
gpg
|
gtk
|
||||||
gtk
|
htop
|
||||||
htop
|
kitty
|
||||||
kitty
|
librewolf
|
||||||
librewolf
|
neovim
|
||||||
neovim
|
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