feat(nextcloud): add nextcloud-client package for Linux
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:
uttarayan21
2025-10-06 01:44:05 +05:30
parent efe34e0d0d
commit df932741ef
2 changed files with 5 additions and 1 deletions

View File

@@ -7,4 +7,7 @@
enable = pkgs.stdenv.isLinux; enable = pkgs.stdenv.isLinux;
startInBackground = true; startInBackground = true;
}; };
home.packages = lib.optionals pkgs.stdenv.isLinux [
pkgs.nextcloud-client
];
} }

View File

@@ -1,6 +1,7 @@
{ {
pkgs, pkgs,
lib, lib,
device,
... ...
}: { }: {
home.packages = with pkgs; [ home.packages = with pkgs; [
@@ -9,7 +10,7 @@
sleek sleek
]; ];
programs.zed-editor = { programs.zed-editor = {
enable = true; enable = (device.is "ryu") || (device.is "kuro");
extensions = [ extensions = [
"catppuccin" "catppuccin"
"toml" "toml"