• Relocates common configurations from a user-specific directory to a global hierarchy • Adds host-specific files and updates import paths for better modularity • Introduces an experimental GNOME mutter feature
14 lines
213 B
Nix
14 lines
213 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.fish = {
|
|
shellInit = ''
|
|
source "${pkgs.asdf-vm}/share/asdf-vm/asdf.fish"
|
|
'';
|
|
};
|
|
|
|
home.packages = builtins.attrValues {
|
|
inherit (pkgs)
|
|
asdf-vm
|
|
;
|
|
};
|
|
}
|