7 lines
141 B
Nix
7 lines
141 B
Nix
{ config, ... }:
|
|
{
|
|
imports = [
|
|
./nvim
|
|
];
|
|
home-manager.users.darkkirb.imports = if config.isGraphical then [ ./vscode ] else [ ];
|
|
}
|