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 whatsapp-for-linux
teams-for-linux teams-for-linux
]; ];
xdg.configFile."teams-for-linux/config.json".text = builtins.toJSON { xdg.configFile = {
awayOnSystemIdle = true; "autostart/org.kde.yakuake.desktop".source = "${pkgs.yakuake}/share/applications/org.kde.yakuake.desktop";
closeAppOnCross = true; "teams-for-linux/config.json".text = builtins.toJSON {
followSystemTheme = true; awayOnSystemIdle = true;
notificationMethod = "electron"; closeAppOnCross = true;
optInTeamsV2 = true; followSystemTheme = true;
spellCheckerLanguages = [ "en_GB" ]; notificationMethod = "electron";
optInTeamsV2 = true;
spellCheckerLanguages = [ "en_GB" ];
};
}; };
} }

View file

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

View file

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