Minor tweaks

This commit is contained in:
Nathan McCarty 2022-09-05 22:00:17 -04:00
parent 310008ca02
commit 45ce81cd3c
Signed by: thatonelutenist
GPG Key ID: D70DA3DD4D1E9F96
2 changed files with 13 additions and 1 deletions

View File

@ -48,6 +48,13 @@
exec = "${pkgs.chromium}/bin/chromium --enable-features=UseOzonePlatform -ozone-platform=wayland \"--app=https://teams.microsoft.com\""; exec = "${pkgs.chromium}/bin/chromium --enable-features=UseOzonePlatform -ozone-platform=wayland \"--app=https://teams.microsoft.com\"";
terminal = false; terminal = false;
}; };
# Cinny
cinnyItem = pkgs.makeDesktopItem {
name = "cinny";
desktopName = "Cinny";
exec = "${pkgs.chromium}/bin/chromium --enable-features=UseOzonePlatform -ozone-platform=wayland \"--app=https://app.cinny.in\"";
terminal = false;
};
in in
[ [
# Discord # Discord
@ -68,6 +75,8 @@
unstable.zoom-us unstable.zoom-us
# Teams (also for work) # Teams (also for work)
unstable.teams unstable.teams
# Cinny for pretty matrix
cinnyItem
# chromium # chromium
(enableWayland chromium "chromium") (enableWayland chromium "chromium")
# Wayland workaround packages # Wayland workaround packages

View File

@ -58,7 +58,10 @@
}; };
config = { config = {
setupGrub = true; setupGrub = true;
nix.autoUpdate = true; nix = {
autoUpdate = true;
autoGC = true;
};
harden = false; harden = false;
virtualization = { virtualization = {
docker = true; docker = true;