enable appimage, overlay anki
This commit is contained in:
parent
3684b35d59
commit
0992f2f308
5 changed files with 29 additions and 3 deletions
17
flake.lock
generated
17
flake.lock
generated
|
@ -1,5 +1,21 @@
|
||||||
{
|
{
|
||||||
"nodes": {
|
"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": {
|
"attic": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"crane": "crane",
|
"crane": "crane",
|
||||||
|
@ -1265,6 +1281,7 @@
|
||||||
},
|
},
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
|
"anki": "anki",
|
||||||
"conduwuit": "conduwuit",
|
"conduwuit": "conduwuit",
|
||||||
"crane": "crane_2",
|
"crane": "crane_2",
|
||||||
"disko": "disko",
|
"disko": "disko",
|
||||||
|
|
|
@ -100,6 +100,9 @@
|
||||||
flake-utils.url = "github:numtide/flake-utils";
|
flake-utils.url = "github:numtide/flake-utils";
|
||||||
crane.url = "github:ipetkov/crane";
|
crane.url = "github:ipetkov/crane";
|
||||||
flake-compat.url = "github:edolstra/flake-compat";
|
flake-compat.url = "github:edolstra/flake-compat";
|
||||||
|
|
||||||
|
# unmerged PRs
|
||||||
|
anki.url = "github:cything/nixpkgs/1562f5286858b3c1e5ea7e60f4bf6b3578519248";
|
||||||
};
|
};
|
||||||
|
|
||||||
nixConfig = {
|
nixConfig = {
|
||||||
|
|
|
@ -7,15 +7,15 @@
|
||||||
enableExtensionUpdateCheck = false;
|
enableExtensionUpdateCheck = false;
|
||||||
mutableExtensionsDir = false;
|
mutableExtensionsDir = false;
|
||||||
extensions =
|
extensions =
|
||||||
|
# if unfree
|
||||||
|
# (with pkgs.vscode-marketplace; [
|
||||||
(with pkgs.open-vsx; [
|
(with pkgs.open-vsx; [
|
||||||
vscodevim.vim
|
vscodevim.vim
|
||||||
jnoortheen.nix-ide
|
jnoortheen.nix-ide
|
||||||
editorconfig.editorconfig
|
editorconfig.editorconfig
|
||||||
github.github-vscode-theme
|
github.github-vscode-theme
|
||||||
rust-lang.rust-analyzer
|
rust-lang.rust-analyzer
|
||||||
])
|
shd101wyy.markdown-preview-enhanced
|
||||||
++ (with pkgs.vscode-marketplace; [
|
|
||||||
github.codespaces
|
|
||||||
]);
|
]);
|
||||||
userSettings = {
|
userSettings = {
|
||||||
"workbench.colorTheme" = "GitHub Dark Default";
|
"workbench.colorTheme" = "GitHub Dark Default";
|
||||||
|
|
|
@ -402,4 +402,9 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
enableQt5Integration = true;
|
enableQt5Integration = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.appimage = {
|
||||||
|
enable = true;
|
||||||
|
binfmt = true;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,6 +20,7 @@ importedOverlays
|
||||||
lldb = pkgFrom stable "lldb";
|
lldb = pkgFrom stable "lldb";
|
||||||
calibre = pkgFrom stable "calibre";
|
calibre = pkgFrom stable "calibre";
|
||||||
nil = inputs.nil.packages.${prev.system}.nil;
|
nil = inputs.nil.packages.${prev.system}.nil;
|
||||||
|
anki = pkgFrom inputs.anki "anki-bin";
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
]
|
]
|
||||||
|
|
Loading…
Add table
Reference in a new issue