chore: Remove iamb doesn't build on darwin
All checks were successful
Flake checker / Build Nix targets (push) Successful in 9m29s

This commit is contained in:
2026-03-09 17:11:07 +05:30
parent d4d9e715ff
commit 04a9d2ce76
3 changed files with 13 additions and 10 deletions

6
flake.lock generated
View File

@@ -2211,11 +2211,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1772379624, "lastModified": 1773000227,
"narHash": "sha256-NG9LLTWlz4YiaTAiRGChbrzbVxBfX+Auq4Ab/SWmk4A=", "narHash": "sha256-zm3ftUQw0MPumYi91HovoGhgyZBlM4o3Zy0LhPNwzXE=",
"owner": "LnL7", "owner": "LnL7",
"repo": "nix-darwin", "repo": "nix-darwin",
"rev": "52d061516108769656a8bd9c6e811c677ec5b462", "rev": "da529ac9e46f25ed5616fd634079a5f3c579135f",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -7,6 +7,7 @@
# ./bluetui.nix # ./bluetui.nix
# ./goread.nix # ./goread.nix
# ./helix.nix # ./helix.nix
# ./iamb.nix
# ./magika.nix # ./magika.nix
# ./mpd.nix # ./mpd.nix
# ./mpris-scrobbler.nix # ./mpris-scrobbler.nix
@@ -19,6 +20,7 @@
# ./template.nix # ./template.nix
# ./tuifeed.nix # ./tuifeed.nix
# ./xh.nix # ./xh.nix
# ./yt-dlp.nix
# ./zellij.nix # ./zellij.nix
../../modules ../../modules
@@ -40,6 +42,7 @@
./carapace.nix ./carapace.nix
./cargo.nix ./cargo.nix
./cfcli.nix ./cfcli.nix
./codex.nix
./ddcbacklight.nix ./ddcbacklight.nix
./deploy-rs.nix ./deploy-rs.nix
./direnv.nix ./direnv.nix
@@ -64,6 +67,7 @@
./neomutt.nix ./neomutt.nix
./neovim.nix ./neovim.nix
./nix-index.nix ./nix-index.nix
./nixify.nix
./nushell.nix ./nushell.nix
./omnix.nix ./omnix.nix
./opencode.nix ./opencode.nix
@@ -80,11 +84,7 @@
./tmux.nix ./tmux.nix
./uv.nix ./uv.nix
./yazi.nix ./yazi.nix
# ./yt-dlp.nix
./zoxide.nix
./yq.nix ./yq.nix
./codex.nix ./zoxide.nix
./nixify.nix
./iamb.nix
]; ];
} }

View File

@@ -4,8 +4,8 @@
device, device,
inputs, inputs,
... ...
}: { }:
environment.pathsToLink = ["/share/xdg-desktop-portal" "/share/applications"]; {
xdg.portal = { xdg.portal = {
enable = device.is "ryu"; enable = device.is "ryu";
config = { config = {
@@ -14,3 +14,6 @@
}; };
}; };
} }
// lib.optionalAttrs (device.is "ryu") {
environment.pathsToLink = ["/share/xdg-desktop-portal" "/share/applications"];
}