11 lines
156 B
Nix
Executable file
11 lines
156 B
Nix
Executable file
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
vlc # Media player
|
|
deluge # BitTorrent client
|
|
];
|
|
|
|
|
|
|
|
}
|