nixos-config/programs/editors/default.nix

7 lines
136 B
Nix
Raw Normal View History

2024-11-09 12:02:10 +00:00
{config, ...}: {
2024-11-03 19:36:23 +00:00
imports = [
./nvim
];
2024-11-09 12:02:10 +00:00
home-manager.users.darkkirb.imports = if config.isGraphical then [./vscode] else [];
2024-11-03 19:36:23 +00:00
}