feat: separate custom pkgs from nixpkgs
This commit is contained in:
parent
66e3a03d7d
commit
384fe2a6e1
8 changed files with 43 additions and 34 deletions
modules/ags
|
@ -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
|
||||
]);
|
||||
]));
|
||||
})
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue