.dotfiles/nix/pkgs/linux.nix
Martin Larsson 44e501b67f Better handling of work/personal darwin machine, remove clang & -tools
from work and add llvm via brew instead.
2025-04-16 22:56:54 +02:00

14 lines
192 B
Nix

{ pkgs, ... }:
{
home = {
packages = with pkgs; [
wl-clipboard-rs
sway
clang
clang-tools
];
file = {
".config/sway".source = ../sway;
};
};
}