feat(tailscale): use stable package
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled
feat(zed): add stable package to zed editor config fix(mbsync): enable mbsync only on linux
This commit is contained in:
@@ -1,4 +1,8 @@
|
||||
{config, ...}: {
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
sops = {
|
||||
secrets."accounts/mail/fastmail" = {};
|
||||
};
|
||||
@@ -36,7 +40,7 @@
|
||||
};
|
||||
};
|
||||
programs.mbsync.enable = true;
|
||||
services.mbsync.enable = true;
|
||||
services.mbsync.enable = pkgs.stdenv.isLinux;
|
||||
# accounts.email.accounts.<name>.mbsync.create
|
||||
# services.mbsync.enable = true;
|
||||
}
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
pkgs,
|
||||
lib,
|
||||
device,
|
||||
stablePkgs,
|
||||
...
|
||||
}: {
|
||||
home.packages = with pkgs; [
|
||||
@@ -174,6 +175,7 @@
|
||||
};
|
||||
}
|
||||
];
|
||||
package = stablePkgs.zed-editor;
|
||||
extraPackages = with pkgs; [
|
||||
nixd
|
||||
nil
|
||||
|
||||
Reference in New Issue
Block a user