29 lines
481 B
Nix
29 lines
481 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
isLinux = pkgs.hostPlatform.system == "linux";
|
|
in
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
spotify
|
|
gimp
|
|
audacity
|
|
obsidian
|
|
element-desktop
|
|
keepassxc
|
|
ani-cli
|
|
]
|
|
++ lib.optionals (pkgs.hostPlatform.system == "linux") [
|
|
# linux-specific/broken on OSX
|
|
mpv
|
|
ghostty
|
|
thunderbird
|
|
krita
|
|
openutau
|
|
]
|
|
++ lib.optionals (pkgs.hostPlatform.system == "darwin") [
|
|
iina
|
|
utm
|
|
raycast
|
|
];
|
|
}
|