.dotfiles/nix/home/linux_aarch.nix
Martin Larsson c4d7f5d082 Major refactor to flake, abstract non-trivial packages into their own
files (such as firefox/spotify-qt+librespot), create utils for reusable
function library
2025-05-11 18:19:19 +02:00

15 lines
137 B
Nix

{
pkgs,
...
}:
{
imports = [
./common/spotify_arm.nix
];
home = {
packages = with pkgs; [
legcord
];
};
}