mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-13 19:57:19 +00:00
add firefox auto launch and rust analyzer
This commit is contained in:
parent
56a810a97b
commit
6f27b24011
2 changed files with 12 additions and 2 deletions
|
@ -15,13 +15,23 @@
|
||||||
"--fg-daemon"
|
"--fg-daemon"
|
||||||
];
|
];
|
||||||
KeepAlive = true;
|
KeepAlive = true;
|
||||||
UserName = "${config.home.username}";
|
|
||||||
ProcessType = "Adaptive";
|
ProcessType = "Adaptive";
|
||||||
StandardOutPath = "${config.home.homeDirectory}/Library/Logs/emacs-stdout.log";
|
StandardOutPath = "${config.home.homeDirectory}/Library/Logs/emacs-stdout.log";
|
||||||
StandardErrorPath = "${config.home.homeDirectory}/Library/Logs/emacs-stderr.log";
|
StandardErrorPath = "${config.home.homeDirectory}/Library/Logs/emacs-stderr.log";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
agents.firefox = {
|
||||||
|
enable = true;
|
||||||
|
config = {
|
||||||
|
ProgramArguments = ["${config.programs.firefox.package}/bin/firefox"];
|
||||||
|
KeepAlive = true;
|
||||||
|
ProcessType = "Adaptive";
|
||||||
|
StandardOutPath = "${config.home.homeDirectory}/Library/Logs/firefox-stdout.log";
|
||||||
|
StandardErrorPath = "${config.home.homeDirectory}/Library/Logs/firefoxn-stderr.log";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
agents.offlineimap = {
|
agents.offlineimap = {
|
||||||
enable = true;
|
enable = true;
|
||||||
config = {
|
config = {
|
||||||
|
@ -40,7 +50,6 @@
|
||||||
"${pkgs.rss2email}/bin/r2e"
|
"${pkgs.rss2email}/bin/r2e"
|
||||||
"run"
|
"run"
|
||||||
];
|
];
|
||||||
UserName = "${config.home.username}";
|
|
||||||
StartInterval = 3600;
|
StartInterval = 3600;
|
||||||
StandardOutPath = "${config.home.homeDirectory}/Library/Logs/rss2email-stdout.log";
|
StandardOutPath = "${config.home.homeDirectory}/Library/Logs/rss2email-stdout.log";
|
||||||
StandardErrorPath = "${config.home.homeDirectory}/Library/Logs/rss2email-stderr.log";
|
StandardErrorPath = "${config.home.homeDirectory}/Library/Logs/rss2email-stderr.log";
|
||||||
|
|
|
@ -109,6 +109,7 @@ in {
|
||||||
ripgrep
|
ripgrep
|
||||||
rnix-lsp
|
rnix-lsp
|
||||||
rsync
|
rsync
|
||||||
|
rust-analyzer
|
||||||
rustup
|
rustup
|
||||||
shellcheck
|
shellcheck
|
||||||
shfmt
|
shfmt
|
||||||
|
|
Loading…
Add table
Reference in a new issue