Thu Jun 13 02:29:55 PM CEST 2024
This commit is contained in:
parent
53f3890ab5
commit
0e0346dafc
|
@ -7,4 +7,10 @@
|
|||
];
|
||||
|
||||
programs.ssh.matchBlocks."*".identityFile = "/home/user/.secrets/SSH/NixVM/id_ed25519";
|
||||
|
||||
home.packages = with pkgs; [
|
||||
wl-clipboard
|
||||
jq
|
||||
evince
|
||||
];
|
||||
}
|
||||
|
|
|
@ -9,6 +9,9 @@
|
|||
s = "status";
|
||||
a = "add";
|
||||
};
|
||||
ignores = [
|
||||
"*.direnv/"
|
||||
];
|
||||
extraConfig = {
|
||||
credentials.helper = "store";
|
||||
pull.rebase = false;
|
||||
|
|
|
@ -27,4 +27,10 @@
|
|||
COLORTERM = "truecolor";
|
||||
};
|
||||
|
||||
home.file.".latexmkrc".text = ''
|
||||
$pdf_mode = 1;
|
||||
$pdflatex = 'lualatex %O %S';
|
||||
$pdf_previewer = 'evince %O %S';
|
||||
'';
|
||||
|
||||
}
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
];
|
||||
home.sessionVariables = {
|
||||
BROWSER = "firefox";
|
||||
PDF_VIEWER = "evince";
|
||||
GPULAB_CERT = "${config.xdg.dataHome}/gpulab.pem";
|
||||
GPULAB_DEV = "False";
|
||||
GCC_COLORS =
|
||||
|
|
|
@ -4,6 +4,10 @@
|
|||
(import ../Common/default.nix { inherit inputs config pkgs; })
|
||||
];
|
||||
|
||||
services.ollama = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
networking.wg-quick.interfaces = {
|
||||
wg0 = {
|
||||
address = [ "10.0.0.13/24" ];
|
||||
|
|
Loading…
Reference in New Issue