mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-27 15:54:58 +08:00
13 lines
276 B
Nix
13 lines
276 B
Nix
{ config, pkgs, ... }:
|
|
let
|
|
screenshot = pkgs.writeScriptBin "screenshot"
|
|
''
|
|
#!${pkgs.runtimeShell}
|
|
${pkgs.maim}/bin/maim -s | ${pkgs.xclip}/bin/xclip -selection clipboard -t image/png
|
|
'';
|
|
in
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
screenshot
|
|
];
|
|
}
|