Testing new packages (for pbp
)
This commit is contained in:
parent
d605d7d8ff
commit
e5ca6feeff
32 changed files with 152 additions and 395 deletions
|
@ -4,7 +4,7 @@
|
|||
openscad
|
||||
] ++ (if !stdenv.hostPlatform.isAarch64 then [
|
||||
blender
|
||||
freecad
|
||||
# freecad
|
||||
]
|
||||
else [ ]);
|
||||
}
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
cura
|
||||
];
|
||||
home.packages = with pkgs; [ ] ++
|
||||
(if !stdenv.hostPlatform.isAarch64 then [
|
||||
cura # cura is currently broken on aarch64
|
||||
] else [ ]);
|
||||
home.sessionVariables = {
|
||||
QT_QPA_PLATFORM = "xcb";
|
||||
};
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
};
|
||||
|
||||
programs.emacs = {
|
||||
enable = true;
|
||||
enable = !pkgs.stdenv.hostPlatform.isDarwin;
|
||||
package = pkgs.customEmacs;
|
||||
};
|
||||
|
||||
|
@ -35,7 +35,7 @@
|
|||
};
|
||||
in
|
||||
with pkgs; [
|
||||
ag
|
||||
silver-searcher
|
||||
fd
|
||||
graphviz-nox
|
||||
hunspell
|
||||
|
@ -56,7 +56,7 @@
|
|||
comment = "Org protocol";
|
||||
desktopName = "org-protocol";
|
||||
type = "Application";
|
||||
mimeType = "x-scheme-handler/org-protocol";
|
||||
mimeTypes = [ "x-scheme-handler/org-protocol" ];
|
||||
}
|
||||
)
|
||||
] ++ (if pkgs.system == "x86_64-linux" then [
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
{ pkgs, ... }: with pkgs; {
|
||||
|
||||
home.packages = [ qmk ];
|
||||
home.packages = [
|
||||
gnumake
|
||||
qmk
|
||||
vial
|
||||
];
|
||||
|
||||
}
|
||||
|
|
|
@ -18,6 +18,9 @@
|
|||
"window"."menuBarVisibility" = "classic";
|
||||
"[nix]"."editor.tabSize" = 2;
|
||||
"nix"."enableLanguageServer" = true;
|
||||
"github.copilot.enable" = {
|
||||
"*" = true;
|
||||
};
|
||||
};
|
||||
extensions = with pkgs.vscode-extensions; [
|
||||
eamodio.gitlens
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue