Compare commits

..

No commits in common. "e60a43c771b70d7b5b68f4d09c7650699e56b0c3" and "21991ffc7f7badb49111ae97046b443b4f2282bd" have entirely different histories.

4 changed files with 11 additions and 11 deletions

View file

@ -8,7 +8,6 @@
libreoffice-fresh
inkscape
webcord
teams-for-linux
kdePackages.krdc
];
services.syncthing.enable = true;
@ -29,13 +28,5 @@
XDG_PROJECTS_DIR = "${config.home.homeDirectory}/Projects";
};
};
configFile."teams-for-linux/config.json".text = builtins.toJSON {
awayOnSystemIdle = true;
closeAppOnCross = true;
followSystemTheme = true;
notificationMethod = "electron";
optInTeamsV2 = true;
spellCheckerLanguages = ["en_GB"];
};
};
}

View file

@ -84,6 +84,7 @@
maxStripes = "1";
showToolTips = "true";
launchers = [
"applications:systemsettings.desktop"
"applications:org.kde.konsole.desktop"
"preferred://filemanager"
"preferred://browser"

View file

@ -58,8 +58,7 @@
extraPackages = epkgs:
with epkgs; [
treesit-grammars.with-all-grammars
mu4e # Linked to `mu` tool
org-roam # To bring in emacs-sqlite
mu4e
];
};
home.packages = with pkgs; [

View file

@ -6,6 +6,7 @@
}: {
home.packages = with pkgs; [
twinkle
teams-for-linux
(import ./scripts/ukaea-vpn.nix pkgs)
];
programs = {
@ -16,4 +17,12 @@
proton.primary = lib.mkForce false;
outlook.primary = lib.mkForce true;
};
xdg.configFile."teams-for-linux/config.json".text = builtins.toJSON {
awayOnSystemIdle = true;
closeAppOnCross = true;
followSystemTheme = true;
notificationMethod = "electron";
optInTeamsV2 = true;
spellCheckerLanguages = ["en_GB"];
};
}