feat(nextcloud): add nextcloud-client package for Linux
Some checks failed
Flake checker / Build Nix targets (push) Failing after 11s
Some checks failed
Flake checker / Build Nix targets (push) Failing after 11s
feat(zed): conditional zed-editor enablement based on device type
This commit is contained in:
@@ -7,4 +7,7 @@
|
||||
enable = pkgs.stdenv.isLinux;
|
||||
startInBackground = true;
|
||||
};
|
||||
home.packages = lib.optionals pkgs.stdenv.isLinux [
|
||||
pkgs.nextcloud-client
|
||||
];
|
||||
}
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
pkgs,
|
||||
lib,
|
||||
device,
|
||||
...
|
||||
}: {
|
||||
home.packages = with pkgs; [
|
||||
@@ -9,7 +10,7 @@
|
||||
sleek
|
||||
];
|
||||
programs.zed-editor = {
|
||||
enable = true;
|
||||
enable = (device.is "ryu") || (device.is "kuro");
|
||||
extensions = [
|
||||
"catppuccin"
|
||||
"toml"
|
||||
|
||||
Reference in New Issue
Block a user