add freecad

This commit is contained in:
2024-09-30 23:14:00 +02:00
parent dbbddb3e6f
commit 0c264e6796
3 changed files with 10 additions and 4 deletions

6
flake.lock generated
View File

@@ -534,11 +534,11 @@
}, },
"nur": { "nur": {
"locked": { "locked": {
"lastModified": 1727704090, "lastModified": 1727705701,
"narHash": "sha256-auUJYF6Ub5piXrgxzZzqY0J/QW1/wgctAJuJPG6w3Gs=", "narHash": "sha256-JHtTLuy37ucghuo7HQMZMPgXYYXxQ5Yftg185VOwm9E=",
"owner": "nix-community", "owner": "nix-community",
"repo": "NUR", "repo": "NUR",
"rev": "df308e60dadeb95306861905b0a334f006d9a7db", "rev": "280f520198dc297d5d70d0c363c33d1de110479e",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -2,12 +2,13 @@
imports = [ imports = [
./alacritty ./alacritty
./anki ./anki
#./cura ./cura
./discord ./discord
./dolphin ./dolphin
./dunst ./dunst
./element ./element
./eww ./eww
./freecad
./git ./git
./inkscape ./inkscape
./ktouch ./ktouch

View File

@@ -0,0 +1,5 @@
{ pkgs, ... }:
{
home.packages = with pkgs.libsForQt5; [ freecad ];
}