18 lines
223 B
Nix
18 lines
223 B
Nix
|
{
|
||
|
lib,
|
||
|
osConfig,
|
||
|
...
|
||
|
}: {
|
||
|
imports = [
|
||
|
./emulators
|
||
|
./programs
|
||
|
./shell
|
||
|
];
|
||
|
|
||
|
config = lib.mkIf osConfig.local.profiles.desktop.enable {
|
||
|
home.sessionVariables = {
|
||
|
EDITOR = "nvim";
|
||
|
};
|
||
|
};
|
||
|
}
|