Compare commits

...

2 commits

Author SHA1 Message Date
Evie Litherland-Smith 60c8bc6f73 Merge branch 'main' of https://git.xenia.me.uk/pixelifytica/nixos 2024-08-12 10:38:26 +01:00
Evie Litherland-Smith ca2875989c Add yakuake drop-down terminal emulator
Set to autostart, set config file so it doesn't do the first run
dialog popup
2024-08-12 10:38:02 +01:00
3 changed files with 13 additions and 8 deletions

View file

@ -24,12 +24,15 @@
whatsapp-for-linux
teams-for-linux
];
xdg.configFile."teams-for-linux/config.json".text = builtins.toJSON {
awayOnSystemIdle = true;
closeAppOnCross = true;
followSystemTheme = true;
notificationMethod = "electron";
optInTeamsV2 = true;
spellCheckerLanguages = [ "en_GB" ];
xdg.configFile = {
"autostart/org.kde.yakuake.desktop".source = "${pkgs.yakuake}/share/applications/org.kde.yakuake.desktop";
"teams-for-linux/config.json".text = builtins.toJSON {
awayOnSystemIdle = true;
closeAppOnCross = true;
followSystemTheme = true;
notificationMethod = "electron";
optInTeamsV2 = true;
spellCheckerLanguages = [ "en_GB" ];
};
};
}

View file

@ -262,6 +262,7 @@
configFile = {
baloofilerc."Basic Settings"."Indexing-Enabled" = false;
kcminputrc.Keyboard.NumLock = 1;
yakuakerc.Dialogs.FirstRun = false;
plasmanotifyrc = {
Notifications = {
NormalAlwaysOnTop = true;

View file

@ -1,5 +1,6 @@
{ fonts, ... }:
{ pkgs, fonts, ... }:
{
home.packages = [ pkgs.yakuake ];
programs.konsole = {
enable = true;
defaultProfile = "One-Light";