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";
|
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";
|
s = "status";
|
||||||
a = "add";
|
a = "add";
|
||||||
};
|
};
|
||||||
|
ignores = [
|
||||||
|
"*.direnv/"
|
||||||
|
];
|
||||||
extraConfig = {
|
extraConfig = {
|
||||||
credentials.helper = "store";
|
credentials.helper = "store";
|
||||||
pull.rebase = false;
|
pull.rebase = false;
|
||||||
|
|
|
@ -27,4 +27,10 @@
|
||||||
COLORTERM = "truecolor";
|
COLORTERM = "truecolor";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
home.file.".latexmkrc".text = ''
|
||||||
|
$pdf_mode = 1;
|
||||||
|
$pdflatex = 'lualatex %O %S';
|
||||||
|
$pdf_previewer = 'evince %O %S';
|
||||||
|
'';
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
];
|
];
|
||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
BROWSER = "firefox";
|
BROWSER = "firefox";
|
||||||
|
PDF_VIEWER = "evince";
|
||||||
GPULAB_CERT = "${config.xdg.dataHome}/gpulab.pem";
|
GPULAB_CERT = "${config.xdg.dataHome}/gpulab.pem";
|
||||||
GPULAB_DEV = "False";
|
GPULAB_DEV = "False";
|
||||||
GCC_COLORS =
|
GCC_COLORS =
|
||||||
|
|
|
@ -4,6 +4,10 @@
|
||||||
(import ../Common/default.nix { inherit inputs config pkgs; })
|
(import ../Common/default.nix { inherit inputs config pkgs; })
|
||||||
];
|
];
|
||||||
|
|
||||||
|
services.ollama = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
networking.wg-quick.interfaces = {
|
networking.wg-quick.interfaces = {
|
||||||
wg0 = {
|
wg0 = {
|
||||||
address = [ "10.0.0.13/24" ];
|
address = [ "10.0.0.13/24" ];
|
||||||
|
|
Loading…
Reference in New Issue