Compare commits
No commits in common. "43f82bdedbfe863d285a95b2d225693c2d1001a2" and "6e2ef44fd1fe632780b4da378183b773aa9fe027" have entirely different histories.
43f82bdedb
...
6e2ef44fd1
|
@ -1,22 +0,0 @@
|
|||
{ lib, config, pkgs, ... }:
|
||||
|
||||
let
|
||||
cfg = config.snowhawk.flameshot;
|
||||
in
|
||||
{
|
||||
options.snowhawk.flameshot = {
|
||||
enable = lib.mkEnableOption "flameshot home-manager module";
|
||||
|
||||
config = lib.mkOption {
|
||||
type = with lib.types; attrsOf inferred;
|
||||
description = "the flameshot config as an attrs of attrs";
|
||||
default = { };
|
||||
};
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
home.packages = with pkgs; [ flameshot ];
|
||||
|
||||
xdg.configFile."flameshot/flameshot.ini" = lib.generators.toINI { } cfg.config;
|
||||
};
|
||||
}
|
|
@ -23,22 +23,12 @@ in
|
|||
playerctl.enable = true;
|
||||
redshift.enable = true;
|
||||
xivlauncher.enable = true;
|
||||
flameshot.enable = true;
|
||||
};
|
||||
snowhawk.ssh = {
|
||||
enable = true;
|
||||
homeNetwork = true;
|
||||
};
|
||||
|
||||
snowhawk.flameshot.config = {
|
||||
General = {
|
||||
contrastOpacity = 188;
|
||||
contrastUiColor = "#8affc1";
|
||||
drawColor = "#00ff00";
|
||||
uiColor = "#007d96";
|
||||
};
|
||||
};
|
||||
|
||||
xsession.numlock.enable = true;
|
||||
|
||||
services.unclutter.enable = true;
|
||||
|
@ -69,6 +59,8 @@ in
|
|||
obsidian
|
||||
steam
|
||||
|
||||
flameshot
|
||||
|
||||
# Build Tools
|
||||
rustup
|
||||
gnumake
|
||||
|
|
Loading…
Reference in New Issue