mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-12 11:17:17 +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"
|
||||
];
|
||||
KeepAlive = true;
|
||||
UserName = "${config.home.username}";
|
||||
ProcessType = "Adaptive";
|
||||
StandardOutPath = "${config.home.homeDirectory}/Library/Logs/emacs-stdout.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 = {
|
||||
enable = true;
|
||||
config = {
|
||||
|
@ -40,7 +50,6 @@
|
|||
"${pkgs.rss2email}/bin/r2e"
|
||||
"run"
|
||||
];
|
||||
UserName = "${config.home.username}";
|
||||
StartInterval = 3600;
|
||||
StandardOutPath = "${config.home.homeDirectory}/Library/Logs/rss2email-stdout.log";
|
||||
StandardErrorPath = "${config.home.homeDirectory}/Library/Logs/rss2email-stderr.log";
|
||||
|
|
|
@ -109,6 +109,7 @@ in {
|
|||
ripgrep
|
||||
rnix-lsp
|
||||
rsync
|
||||
rust-analyzer
|
||||
rustup
|
||||
shellcheck
|
||||
shfmt
|
||||
|
|
Loading…
Add table
Reference in a new issue