[3d printing] Fix FreeCAD launcher

This commit is contained in:
2026-01-27 23:20:28 -08:00
parent 31907ff47b
commit 0950758532
2 changed files with 35 additions and 7 deletions

View File

@@ -2,9 +2,7 @@
description = "System Configuration";
inputs = {
nixpkgs = {
url = "github:nixos/nixpkgs?ref=nixos-25.11";
};
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-25.11";
home-manager = {
url = "github:nix-community/home-manager?ref=release-25.11";
inputs.nixpkgs.follows = "nixpkgs";
@@ -16,7 +14,11 @@
};
outputs =
{ self, nixpkgs, ... }@inputs:
{
self,
nixpkgs,
...
}@inputs:
let
local = import ./lib;
mkNixosConfig =