Thu Jun 13 02:29:55 PM CEST 2024

This commit is contained in:
Thomas Avé 2024-06-13 14:29:55 +02:00
parent 53f3890ab5
commit 0e0346dafc
5 changed files with 20 additions and 0 deletions

View File

@ -7,4 +7,10 @@
];
programs.ssh.matchBlocks."*".identityFile = "/home/user/.secrets/SSH/NixVM/id_ed25519";
home.packages = with pkgs; [
wl-clipboard
jq
evince
];
}

View File

@ -9,6 +9,9 @@
s = "status";
a = "add";
};
ignores = [
"*.direnv/"
];
extraConfig = {
credentials.helper = "store";
pull.rebase = false;

View File

@ -27,4 +27,10 @@
COLORTERM = "truecolor";
};
home.file.".latexmkrc".text = ''
$pdf_mode = 1;
$pdflatex = 'lualatex %O %S';
$pdf_previewer = 'evince %O %S';
'';
}

View File

@ -15,6 +15,7 @@
];
home.sessionVariables = {
BROWSER = "firefox";
PDF_VIEWER = "evince";
GPULAB_CERT = "${config.xdg.dataHome}/gpulab.pem";
GPULAB_DEV = "False";
GCC_COLORS =

View File

@ -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" ];