NixOS-Config/nixos/desktop/package-configs/default.nix

14 lines
147 B
Nix
Raw Normal View History

2024-04-19 16:57:39 +02:00
{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
imports = [
./firefox
];
2024-05-12 22:09:32 +02:00
environment.systemPackages = with pkgs; [waypipe];
2024-04-19 16:57:39 +02:00
}