enable appimage, overlay anki

This commit is contained in:
cy 2025-02-13 21:49:45 -05:00
parent 3684b35d59
commit 0992f2f308
Signed by: cy
SSH key fingerprint: SHA256:o/geVWV4om1QhUSkKvDQeW/eAihwnjyXkqMwrVdbuts
5 changed files with 29 additions and 3 deletions

17
flake.lock generated
View file

@ -1,5 +1,21 @@
{
"nodes": {
"anki": {
"locked": {
"lastModified": 1739471491,
"narHash": "sha256-ZCKWgsNqKWkVOAQFaFSmK3EN/uDdamNOcSItzvooWYs=",
"owner": "cything",
"repo": "nixpkgs",
"rev": "1562f5286858b3c1e5ea7e60f4bf6b3578519248",
"type": "github"
},
"original": {
"owner": "cything",
"repo": "nixpkgs",
"rev": "1562f5286858b3c1e5ea7e60f4bf6b3578519248",
"type": "github"
}
},
"attic": {
"inputs": {
"crane": "crane",
@ -1265,6 +1281,7 @@
},
"root": {
"inputs": {
"anki": "anki",
"conduwuit": "conduwuit",
"crane": "crane_2",
"disko": "disko",

View file

@ -100,6 +100,9 @@
flake-utils.url = "github:numtide/flake-utils";
crane.url = "github:ipetkov/crane";
flake-compat.url = "github:edolstra/flake-compat";
# unmerged PRs
anki.url = "github:cything/nixpkgs/1562f5286858b3c1e5ea7e60f4bf6b3578519248";
};
nixConfig = {

View file

@ -7,15 +7,15 @@
enableExtensionUpdateCheck = false;
mutableExtensionsDir = false;
extensions =
# if unfree
# (with pkgs.vscode-marketplace; [
(with pkgs.open-vsx; [
vscodevim.vim
jnoortheen.nix-ide
editorconfig.editorconfig
github.github-vscode-theme
rust-lang.rust-analyzer
])
++ (with pkgs.vscode-marketplace; [
github.codespaces
shd101wyy.markdown-preview-enhanced
]);
userSettings = {
"workbench.colorTheme" = "GitHub Dark Default";

View file

@ -402,4 +402,9 @@
enable = true;
enableQt5Integration = true;
};
programs.appimage = {
enable = true;
binfmt = true;
};
}

View file

@ -20,6 +20,7 @@ importedOverlays
lldb = pkgFrom stable "lldb";
calibre = pkgFrom stable "calibre";
nil = inputs.nil.packages.${prev.system}.nil;
anki = pkgFrom inputs.anki "anki-bin";
}
)
]