Installing 1Password from Cask instead of Applestore (mas)

This commit is contained in:
Olaf 2025-05-08 12:00:45 +02:00
parent 7dae897e79
commit 0ae424d772
3 changed files with 16 additions and 4 deletions

View File

@ -12,6 +12,9 @@ _:
"gimp"
"inkscape"
"vcv-rack"
"affinity-designer"
"affinity-photo"
"affinity-publisher"
# Communication Tools
"discord"
@ -29,6 +32,7 @@ _:
"box-drive"
"synology-drive"
"spamsieve"
"keybase"
# Entertainment Tools
"vlc"

View File

@ -46,7 +46,6 @@ in
# This message is safe to ignore. (https://github.com/dustinlyons/nixos-config/issues/83)
masApps = {
"1password" = 1333542190;
"wireguard" = 1451685025;
};
};
@ -105,6 +104,8 @@ in
{ path = "/System/Applications/Photos.app/"; }
{ path = "/System/Applications/System Settings.app/"; }
{ path = "/Applications/Signal.app/"; }
{ path = "/Applications/WhatsApp.app/"; }
{
path = "/Applications/Jellyfin Media Player.app/";
options = "-l Jellyfin";
@ -113,7 +114,10 @@ in
{ path = "/Applications//Home Assistant.app/"; }
{ path = "/Applications//Remarkable.app/"; }
{ path = "/Applications/LibreOffice.app/"; }
{ path = "/Applications/Microsoft Word.app/"; }
{ path = "/Applications/Microsoft Powerpoint.app/"; }
{ path = "/Applications/Microsoft Teams.app/"; }
{ path = "/System/Applications/Utilities/Screen Sharing.app/"}
{
path = "/Applications/";
section = "others";

View File

@ -1,7 +1,11 @@
{ pkgs }:
with pkgs;
let shared-packages = import ../shared/packages.nix { inherit pkgs; }; in
shared-packages ++ [
let
shared-packages = import ../shared/packages.nix { inherit pkgs; };
in
shared-packages
++ [
dockutil
mas
]