nichts/modules/user/default.nix

11 lines
212 B
Nix
Raw Normal View History

2025-03-03 15:43:20 +01:00
{, ...}: rec {
2024-11-01 15:54:20 +01:00
module = {
config = {
2024-11-25 14:55:21 +01:00
environment.sessionVariables.EDITOR = "hx";
environment.systemPackages = builtins.attrValues {
inherit (packages) fish helix;
};
2024-11-01 15:54:20 +01:00
};
};
}