Browse Source

i3config: floating alerts, nixos: opnessl.dev,pipx,jq

master
arnaucube 1 month ago
parent
commit
4c02c0cf12
2 changed files with 13 additions and 2 deletions
  1. +3
    -0
      i3/config
  2. +10
    -2
      nixos/common-configuration.nix

+ 3
- 0
i3/config

@ -173,6 +173,9 @@ bar {
default_border pixel 1
# notifications in a floating panel instead of a new tiling window
for_window [window_role="alert"] floating enable
# having installed feh (sudo apt install feh)
exec feh --bg-fill ~/Sync/wallpapers/geometry02_croped1920x1080.png
exec xmodmap .Xmodmap

+ 10
- 2
nixos/common-configuration.nix

@ -49,6 +49,7 @@
xfce.ristretto
xfce.tumbler # for thumbnails of imgs
pavucontrol
jq
# other
mpv
@ -61,29 +62,36 @@
chromium
# languages
texlive.combined.scheme-medium # includes latexmk
#texlive.combined.scheme-medium # includes latexmk
#texlivePackages.minted
pgf-umlsd # latex diagrams
pgf
(pkgs.texlive.combine {
inherit (pkgs.texlive)
scheme-medium
scheme-medium # includes latexmk
minted # syntax highligting
pgf
;
})
#gcc
clang
clang-tools
pkg-config
openssl
stdenv
rustup
sage
go
python3
pipx
nodejs
];
environment.variables = {
LIBCLANG_PATH = "${pkgs.llvmPackages_17.libclang.lib}/lib";
PKG_CONFIG_PATH = "${pkgs.openssl.dev}/lib/pkgconfig";
OPENSSL_DIR = "${pkgs.openssl.dev}";
};
fonts.packages = with pkgs; [

Loading…
Cancel
Save