regular backup
This commit is contained in:
parent
61a74150f0
commit
c7eec5c7a9
|
@ -435,7 +435,8 @@ in {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd.user.services.qbittorrent-nox = {
|
systemd.user.services = {
|
||||||
|
qbittorrent-nox = {
|
||||||
Unit = {
|
Unit = {
|
||||||
Description = "qBittorrent-nox service.";
|
Description = "qBittorrent-nox service.";
|
||||||
# Wants = [ "network-online.target" ];
|
# Wants = [ "network-online.target" ];
|
||||||
|
@ -452,5 +453,6 @@ in {
|
||||||
Restart = "always";
|
Restart = "always";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
with import <nixpkgs> {};
|
||||||
|
(pkgs.buildFHSEnv {
|
||||||
|
name = "azule-runtime";
|
||||||
|
targetPkgs = pkgs: with pkgs; [
|
||||||
|
libplist
|
||||||
|
xmlstarlet
|
||||||
|
libxml2
|
||||||
|
jq
|
||||||
|
];
|
||||||
|
runScript = "bash";
|
||||||
|
}).env
|
|
@ -43,7 +43,7 @@ vim.diagnostic.config({
|
||||||
focusable = false,
|
focusable = false,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
-- vim.cmd([[au CursorHold * lua vim.diagnostic.open_float(0,{scope = "cursor"})]])
|
vim.cmd([[au CursorHold * lua vim.diagnostic.open_float(0,{scope = "cursor"})]])
|
||||||
vim.g.mapleader = " ";
|
vim.g.mapleader = " ";
|
||||||
vim.filetype.add({
|
vim.filetype.add({
|
||||||
extension = {
|
extension = {
|
||||||
|
|
Loading…
Reference in New Issue