nixos-config/programs/editors/default.nix

8 lines
141 B
Nix
Raw Permalink Normal View History

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