nix-configs/hosts/theseus/work.nix
2024-11-10 23:55:03 +01:00

9 lines
218 B
Nix

{ config, pkgs, lib, ... }: {
home.packages = [
pkgs.dotnet-sdk_8
pkgs.jetbrains.rider
pkgs.jetbrains.datagrip
(pkgs.firefox-devedition.overrideAttrs (super: self: { meta.priority = 1; }))
];
}