add desktop module

This commit is contained in:
2025-10-01 19:36:53 +02:00
parent eec721d549
commit 86c53bea37
7 changed files with 20 additions and 21 deletions

14
modules/desktop.nix Normal file
View File

@@ -0,0 +1,14 @@
{ self, pkgs, ... }:
{
environment.systemPackages = [
pkgs.mpv # video player
pkgs.amberol # music player
];
programs.firefox = {
enable = true;
nativeMessagingHosts.packages = [ pkgs.passff-host ];
};
programs.thunderbird.enable = true;
}