dots/modules/linux/applications.nix
Nico 5e8fdf436d chore: cleanup modules
system-specific modules such as darwin/games will now automatically
import games.nix

removes alot of duplication
2025-05-03 16:34:35 +10:00

15 lines
207 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [ ../applications.nix ];
# nix pkgs
environment.systemPackages = with pkgs; [
mpv
ghostty
thunderbird
krita
openutau
obs-studio
];
}