mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2026-09-19 16:49:04 +05:30
12 lines
205 B
Nix
12 lines
205 B
Nix
{
|
|
flake.modules.nixos.desktop = {pkgs, ...}: {
|
|
programs.gpu-screen-recorder = {
|
|
enable = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
gpu-screen-recorder-gtk
|
|
];
|
|
};
|
|
}
|