8 lines
215 B
Nix
8 lines
215 B
Nix
{pkgs, ...}: {
|
|
environment.systemPackages = [pkgs.kate];
|
|
|
|
# Use kwrite to open text files, and kate if I'm developing stuff
|
|
xdg.mime.defaultApplications = {
|
|
"text/plain" = "org.kde.kwrite.desktop";
|
|
};
|
|
}
|