mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
parent
b6204ff489
commit
1d8296c46f
1 changed files with 2 additions and 2 deletions
|
@ -24,7 +24,7 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
settings = mkOption {
|
settings = mkOption {
|
||||||
type = iniFormat.type;
|
inherit (iniFormat) type;
|
||||||
default = { };
|
default = { };
|
||||||
example = {
|
example = {
|
||||||
General = {
|
General = {
|
||||||
|
@ -64,7 +64,7 @@ in {
|
||||||
Install = { WantedBy = [ "graphical-session.target" ]; };
|
Install = { WantedBy = [ "graphical-session.target" ]; };
|
||||||
|
|
||||||
Service = {
|
Service = {
|
||||||
Environment = "PATH=${config.home.profileDirectory}/bin";
|
Environment = [ "PATH=${config.home.profileDirectory}/bin" ];
|
||||||
ExecStart = "${cfg.package}/bin/flameshot";
|
ExecStart = "${cfg.package}/bin/flameshot";
|
||||||
Restart = "on-abort";
|
Restart = "on-abort";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue