mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 12:49:32 -08:00
added flameshot screencap
This commit is contained in:
parent
e4e4bed5a2
commit
6655a831f5
2 changed files with 19 additions and 2 deletions
16
modules/flameshot.nix
Normal file
16
modules/flameshot.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
|
||||
services.flameshot = {
|
||||
enable = true;
|
||||
settings = {
|
||||
General = {
|
||||
disabledTrayIcon = false;
|
||||
showStartupLaunchMessage = false;
|
||||
imageSavePath = "~/Pictures";
|
||||
saveAsFileExtension = ".png";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -20,13 +20,14 @@ in
|
|||
|
||||
imports = [
|
||||
../modules/emacs.nix
|
||||
../modules/git.nix
|
||||
../modules/flameshot.nix
|
||||
../modules/fusuma.nix
|
||||
../modules/git.nix
|
||||
../modules/rofi.nix
|
||||
../modules/vim.nix
|
||||
../modules/wezterm.nix
|
||||
../modules/xdg.nix
|
||||
../modules/zsh.nix
|
||||
../modules/rofi.nix
|
||||
];
|
||||
|
||||
home.file = {
|
||||
|
|
Loading…
Reference in a new issue