feat: add simple default path shell

This commit is contained in:
Rasyidan Akbar F. 2025-10-21 13:11:27 +07:00
commit f20e3a6b57
2 changed files with 3 additions and 10 deletions

View file

@ -2,11 +2,7 @@
pkgs.mkShell { pkgs.mkShell {
name = "default"; name = "default";
packages = with pkgs; [ packages = with pkgs; [ git nixfmt-classic uv ];
git
nixfmt-classic
uv
];
shellHook = '' shellHook = ''
export DOTFILES_ROOT="$PWD" export DOTFILES_ROOT="$PWD"
export XDG_CACHE_HOME="$DOTFILES_ROOT/.cache" export XDG_CACHE_HOME="$DOTFILES_ROOT/.cache"

View file

@ -1,8 +1,5 @@
{ config, pkgs, lib, ... }: { { config, pkgs, lib, ... }: {
# Import shared cross-platform home configuration # Import shared cross-platform home configuration
imports = [ imports =
../../home/rsydn/base.nix [ ../../home/rsydn/base.nix ./programs/aerospace ./programs/ghostty.nix ];
./programs/aerospace
./programs/ghostty.nix
];
} }