23 lines
450 B
Nix
23 lines
450 B
Nix
{ pkgs, ... }: {
|
|
home.file = {
|
|
".local/share/OpenSCAD/libraries/BOSL2" = {
|
|
source = builtins.fetchGit {
|
|
url = "https://github.com/BelfrySCAD/BOSL2";
|
|
rev = "7821a5143c7ab488ff3ff73d0cd0c4b508fb5796";
|
|
};
|
|
};
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
# Dotspace
|
|
gthumb
|
|
qtpass
|
|
ledger
|
|
sound-juicer
|
|
#pkgs-unstable.yt-dlp
|
|
#pkgs-unstable.openscad-unstable
|
|
|
|
# ll-latitude-e5591
|
|
wine
|
|
];
|
|
}
|