Merge branch 'master' of ssh://gitea.zaclys.com/SnuffkinMalicieux/nixos-config

This commit is contained in:
afoucaultc 2026-08-04 14:43:50 +02:00
commit 033677e764
6 changed files with 36 additions and 9 deletions

2
.gitignore vendored
View file

@ -1,3 +1,5 @@
dotfiles/nvim/spell/*.spl dotfiles/nvim/spell/*.spl
dotfiles/nvim/spell/*.sug dotfiles/nvim/spell/*.sug
dotfiles/nvim/lazy-lock.json dotfiles/nvim/lazy-lock.json
dotfiles/hypr/wallpaper
hosts/*/hardware-configuration.nix

View file

@ -1,4 +1,20 @@
# How to use # How to use
## Raccourcis utiles
```
Lancer start-hyprland dans le tty au démarrage
ALT Q : ouvre le terminal
ALT N : ouvre neovim
ALT W : ouvre le sélecteurs de programmes
ALT X : ouvre le sélecteur de fenêtre
ALT C : ouvre le sélecteur de dossier
ALT D : ouvre le gestionnaire de fichiers
MAJ L ou H : change de workspace à droite ou à gauche
MAJ K ou J : envoie la fenêtre courante dans le workspace à droite ou à gauche
Pour le reste, se référer aux dotfiles ~/nixos-config/dotfiles/hypr/conf/binding.lua
```
## Structure : ## Structure :
```shell ```shell
~/nixos-config/ ~/nixos-config/

BIN
dotfiles/dots.zip Normal file

Binary file not shown.

View file

@ -1,14 +1,24 @@
############## Figures ############## ############## Figures ##############
snippet fig "Figure" b snippet svgfig "Figures from inkscape PDF+PDF_tex" b
\begin{figure} \begin{figure}[htbp]
\centering \centering
\includegraphics[width=\figsize]{figures/$1} \def\svgwidth{0.99\textwidth}
\caption{$0} \import{figures/$1.pdf_tex}
\label{fig:$1} \caption{$2}
\label{$1}
\end{figure} \end{figure}
endsnippet endsnippet
snippet 2fig "Two Figures" b snippet sfig "Single figure" b
\begin{figure}[htbp]
\centering
\input{figures/$1}
\caption{$2}
\label{$1}
\end{figure}
endsnippet
snippet dfig "Double figures" b
\begin{figure} \begin{figure}
\begin{subfigure}{\dfigsize} \begin{subfigure}{\dfigsize}
\centering \centering

View file

@ -17,6 +17,7 @@
./packages/other_apps_light.nix ./packages/other_apps_light.nix
./packages/pass.nix ./packages/pass.nix
./packages/protonmail.nix ./packages/protonmail.nix
./packages/python.nix
./packages/texlive.nix ./packages/texlive.nix
./packages/thunderbird.nix ./packages/thunderbird.nix
./packages/tmux.nix ./packages/tmux.nix

View file

@ -1,10 +1,8 @@
{ ... }: { pkgs, inputs, ... }:
{ {
programs.git = { programs.git = {
enable = true; enable = true;
settings.user.name = "afoucaultc"; settings.user.name = "afoucaultc";
settings.user.email = "antoine.fo.ca@proton.me"; settings.user.email = "antoine.fo.ca@proton.me";
#userName = "afoucaultc";
#userEmail = "antoine.fo.ca@proton.me";
}; };
} }