This commit is contained in:
js0ny 2026-03-09 23:13:36 +00:00
parent 8e81a4a3da
commit 131c255d4c
6 changed files with 30 additions and 6 deletions

View file

@ -1,5 +1,9 @@
# ~/.config/nix-config/common/packages-headless.nix
{pkgs, ...}: {
{
pkgs,
config,
...
}: {
programs.bat.enable = true;
programs.btop.enable = true;
programs.delta.enable = true;
@ -67,6 +71,8 @@
opencode
p7zip
visidata
proton-pass-cli
pass
]
++ (
if pkgs.stdenv.isDarwin
@ -81,4 +87,8 @@
programs.nix-index.enable = true;
programs.nix-index.symlinkToCacheHome = true;
programs.nix-index-database.comma.enable = true;
home.sessionVariables = {
PASSWORD_STORE_DIR = "${config.xdg.dataHome}/password-store";
};
}

View file

@ -1,4 +1,3 @@
# ~/.config/nixcfgs/users/js0ny/default.nix
{
pkgs,
config,
@ -105,6 +104,8 @@ in {
# Development setup
../../modules/home/dev/nix.nix
../../modules/home/linux.nix
];
nixpkgs.config.allowUnfree = true;