added pkgs-local for easy access

This commit is contained in:
Matt Nish-Lapidus 2025-06-18 11:20:48 -04:00
parent 7dc1d2713f
commit 921aabab40
8 changed files with 24 additions and 23 deletions

View file

@ -1,4 +1,4 @@
{ pkgs, nix-config, inputs, lib, ... }:
{ pkgs, nix-config, pkgs-local, lib, ... }:
{
@ -92,7 +92,7 @@
davinci-resolve-studio
processing
zotero
# nix-config.packages.x86_64-linux.zotero-latest
# pkgs-local.zotero-latest
fractal
handbrake
gmic

View file

@ -1,6 +1,6 @@
{ nix-config, pkgs, ... }:
{ pkgs-local, pkgs, ... }:
let
pwdcmd = "${nix-config.packages.x86_64-linux.rbw-latest}/bin/rbw";
pwdcmd = "${pkgs-local.rbw-latest}/bin/rbw";
in
{
accounts.email = {
@ -54,7 +54,7 @@ in
services.imapnotify = {
enable = true;
package = pkgs.goimapnotify;
path = [ pkgs.mu pkgs.isync pkgs.goimapnotify nix-config.packages.x86_64-linux.rbw-latest ];
path = [ pkgs.mu pkgs.isync pkgs.goimapnotify pkgs-local.rbw-latest ];
};
programs = {

View file

@ -1,9 +1,9 @@
{ nix-config, pkgs, ... }:
{ pkgs-local, pkgs, ... }:
{
home.packages = with pkgs; [
mpc
nix-config.packages.x86_64-linux.rmpc-latest
pkgs-local.rmpc-latest
];
services = {

View file

@ -1,7 +1,7 @@
{ nix-config, lib, pkgs, ... }:
{ pkgs-local, lib, pkgs, ... }:
{
home.packages = lib.mkMerge [
(with nix-config.packages.x86_64-linux; [
(with pkgs-local; [
mioctl
tal.bassline
tal.j8

View file

@ -1,4 +1,4 @@
{ nix-config, pkgs-stable, inputs, pkgs, ... }:
{ pkgs-local, pkgs-stable, inputs, pkgs, ... }:
{
home.packages = with pkgs; [
@ -192,7 +192,7 @@
jq.enable = true;
rbw = {
enable = true;
package = nix-config.packages.x86_64-linux.rbw-latest;
package = pkgs-local.rbw-latest;
};
};