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;
|
enable = pkgs.stdenv.isLinux;
|
||||||
startInBackground = true;
|
startInBackground = true;
|
||||||
};
|
};
|
||||||
|
home.packages = lib.optionals pkgs.stdenv.isLinux [
|
||||||
|
pkgs.nextcloud-client
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|||||||
Reference in New Issue
Block a user