mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 09:44:08 -05:00
implement deferred apps
This commit is contained in:
parent
cfd0dc1ae0
commit
82416ad749
3 changed files with 69 additions and 21 deletions
|
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
inputs,
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
|
|
@ -10,6 +11,7 @@ let
|
|||
in
|
||||
{
|
||||
imports = lib.flatten [
|
||||
inputs.deferred-apps.homeManagerModules.default
|
||||
(map lib.custom.relativeToRoot [
|
||||
"modules/common/host-spec.nix"
|
||||
"modules/home"
|
||||
|
|
@ -23,16 +25,26 @@ in
|
|||
./starship.nix
|
||||
];
|
||||
|
||||
programs.deferredApps = {
|
||||
enable = true;
|
||||
packages = builtins.attrValues {
|
||||
inherit (pkgs.unstable)
|
||||
orca-slicer
|
||||
yaak
|
||||
;
|
||||
inherit (pkgs)
|
||||
bitwarden-cli
|
||||
protonvpn-gui
|
||||
imagemagick
|
||||
httpie
|
||||
;
|
||||
};
|
||||
};
|
||||
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
screen
|
||||
ouch
|
||||
bitwarden-cli
|
||||
yaak
|
||||
vimgolf
|
||||
httpie
|
||||
protonvpn-gui
|
||||
imagemagick
|
||||
;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue