dosei/home: don't install pcloud

This commit is contained in:
2025-04-28 10:38:37 +02:00
parent f85ed829a9
commit 68594651ac
2 changed files with 5 additions and 2 deletions

@ -222,6 +222,7 @@
inherit yet-unstabler-pkgs; inherit yet-unstabler-pkgs;
inherit (self) extendedLib; inherit (self) extendedLib;
inherit (config) machineVars; inherit (config) machineVars;
machineName = name;
}; };
sharedModules = [ sharedModules = [

@ -1,4 +1,4 @@
{ pkgs, config, machineVars, ... }: { pkgs, config, machineVars, machineName, ... }:
{ {
home.packages = with pkgs; [ home.packages = with pkgs; [
bandwhich bandwhich
@ -124,7 +124,6 @@
nsxiv nsxiv
nyxt nyxt
obsidian obsidian
pcloud
pdfarranger pdfarranger
pwvucontrol pwvucontrol
# scrcpy # scrcpy
@ -165,6 +164,9 @@
steam-tui steam-tui
stepmania stepmania
taisei taisei
] ++ lib.optionals (machineName != "dosei") [
# Source blocked by external firewall on dosei
pcloud
] ]
); );
} }