several home manager adjustments

This commit is contained in:
Thilo Billerbeck 2025-05-27 20:43:02 +02:00
parent e525a5dc6b
commit bdfeae5fa3
2 changed files with 2 additions and 3 deletions
home-manager
modules
programs

View file

@ -148,7 +148,6 @@ in
obsidian
reaper
# yabridge
torzu
# inputs.nix-alien.packages.x86_64-linux.nix-alien
kdePackages.kdenlive
audacity

View file

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ pkgs, lib, ... }:
{
programs.zsh = {
@ -25,7 +25,7 @@
"ohmyzsh/ohmyzsh path:plugins/dotenv"
];
};
initExtraFirst = ''
initContent = lib.mkBefore ''
ZSH_DOTENV_PROMPT=false
export PATH=~/.npm-global/bin:$PATH
'';