.dotfiles/nix/pkgs/linux.nix

12 lines
162 B
Nix

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