feat: separate custom pkgs from nixpkgs

This commit is contained in:
matt1432 2023-12-01 16:53:51 -05:00
parent 66e3a03d7d
commit 384fe2a6e1
8 changed files with 43 additions and 34 deletions
modules/ags

View file

@ -27,24 +27,24 @@ in {
extraPackages = [pkgs.libgudev];
};
home.packages = with pkgs;
[
home.packages =
[config.customPkgs.coloryou]
++ (with pkgs; [
# ags
sassc
coloryou
playerctl
## gui
pavucontrol # TODO: replace with ags widget
networkmanagerapplet # TODO: replace with ags widget
]
++ (optionals isTouchscreen [
])
++ (optionals isTouchscreen (with pkgs; [
# touchscreen
lisgd
squeekboard
ydotool
blueberry
]);
]));
})
];
}