~ruther/nixos-config

ref: fc077de8d68a51bbec6c5630f1dc35d3db0167c8 nixos-config/modules/programs/clipmenu.nix -rw-r--r-- 128 bytes
fc077de8 — Frantisek Bohacek feat: add nixpkgs-stable registry input 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
{ config, lib, pkgs, ... }:

{
  home.packages = with pkgs; [
    dmenu
    clipmenu
  ];

  services.clipmenu.enable = true;
}