claude-desktop package

This commit is contained in:
William 2025-12-16 10:18:38 -03:00
parent 97b0b01a48
commit 7a0fa96129
5 changed files with 239 additions and 9 deletions

View file

@ -1,11 +1,18 @@
{ ... }:
{ inputs, ... }:
{
perSystem =
{ pkgs, system, ... }:
{ system, ... }:
let
pkgs = import inputs.nixpkgs {
inherit system;
config.allowUnfree = true;
};
in
{
packages = {
base16-schemes = pkgs.callPackage ./packages/base16-schemes.nix { };
claude-desktop = pkgs.callPackage ./packages/claude-desktop.nix { };
fastfetch = pkgs.callPackage ./packages/fastfetch.nix { };
hm-cli = pkgs.callPackage ./packages/hm-cli.nix { };
kwrite = pkgs.callPackage ./packages/kwrite.nix { };