Compare commits

...

2 commits

Author SHA1 Message Date
Evie Litherland-Smith b28339e207 Autostart Teams and Twinkle on all work devices by default 2024-08-23 14:04:53 +01:00
Evie Litherland-Smith a42152b918 Customise yakuakerc
Set sizes, disable title bar and system tray icon
2024-08-23 14:03:49 +01:00
3 changed files with 16 additions and 6 deletions

View file

@ -1,11 +1,7 @@
{ pkgs, ... }:
{ ... }:
{
imports = [
./work.nix
./desktop/plasma/default.nix
];
xdg.configFile = {
"autostart/twinkle.desktop".source = "${pkgs.twinkle}/share/applications/twinkle.desktop";
"autostart/teams-for-linux.desktop".source = "${pkgs.teams-for-linux}/share/applications/teams-for-linux.desktop";
};
}

View file

@ -264,7 +264,17 @@
configFile = {
baloofilerc."Basic Settings"."Indexing-Enabled" = false;
kcminputrc.Keyboard.NumLock = 1;
yakuakerc.Dialogs.FirstRun = false;
yakuakerc = {
Dialogs.FirstRun = false;
Window = {
DynamicTabTitles = true;
Height = 80;
Width = 80;
KeepOpen = false;
ShowSystrayIcon = false;
ShowTitleBar = false;
};
};
plasmanotifyrc = {
Notifications = {
NormalAlwaysOnTop = true;

View file

@ -15,4 +15,8 @@
proton.primary = lib.mkForce false;
outlook.primary = lib.mkForce true;
};
xdg.configFile = {
"autostart/twinkle.desktop".source = "${pkgs.twinkle}/share/applications/twinkle.desktop";
"autostart/teams-for-linux.desktop".source = "${pkgs.teams-for-linux}/share/applications/teams-for-linux.desktop";
};
}