From 9cec6b46114f239c8b7f275973df3651c31ccb66 Mon Sep 17 00:00:00 2001 From: Felix Wittwer Date: Mon, 29 Mar 2021 10:15:23 +0200 Subject: [PATCH] Alter DPI and add nyxt config --- entropy/initialize.sh | 1 + entropy/nixos/configuration.nix | 54 ++++++++++++++++++++------------- entropy/nyxt/init.lisp | 7 +++++ 3 files changed, 41 insertions(+), 21 deletions(-) create mode 100644 entropy/nyxt/init.lisp diff --git a/entropy/initialize.sh b/entropy/initialize.sh index 8211046..2bdc3ad 100755 --- a/entropy/initialize.sh +++ b/entropy/initialize.sh @@ -77,6 +77,7 @@ ln -s $PWD/vpn ~/.config/vpn # link other dotfiles printf "\033[33m[info] Linking config files\033[39m" ln -s $PWD/kitty/ ~/.config/kitty +ln -s $PWD/nyxt/ ~/.config/next ln -s $PWD/.urlview ~/.urlview ln -s $PWD/.gitconfig ~/.gitconfig ln -s $PWD/git-commit-template.txt ~/.gitcommit_template diff --git a/entropy/nixos/configuration.nix b/entropy/nixos/configuration.nix index e1fab5a..1e2aa2f 100644 --- a/entropy/nixos/configuration.nix +++ b/entropy/nixos/configuration.nix @@ -19,7 +19,8 @@ # make the screen usable #hardware.video.hidpi.enable = true; - services.xserver.dpi = 180; + #services.xserver.dpi = 180; + services.xserver.dpi = 192; environment.variables = { GDK_SCALE = "2"; GDK_DPI_SCALE = "0.5"; @@ -51,6 +52,8 @@ # replicates the default behaviour. networking.useDHCP = false; networking.interfaces.enp0s31f6.useDHCP = true; + # USB-C dock + networking.interfaces.enp0s20f0u2u1.useDHCP = true; networking.interfaces.wlp0s20f3.useDHCP = true; # Configure network proxy if necessary @@ -179,7 +182,10 @@ package = pkgs.bluezFull; # enable A2DP config = { - General = { Enable = "Source,Sink,Media,Socket"; }; + General = { + Enable = "Source,Sink,Media"; + Disable = "Socket"; + }; }; }; services.blueman.enable = true; @@ -216,7 +222,7 @@ # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [ - # basic command line tooling + ## basic command line tooling wget vim w3m @@ -233,67 +239,72 @@ inetutils usbutils screen - # automatic detection of display changes + ## automatic detection of display changes autorandr - # audio management + ## audio management pavucontrol - # password management + ## password management pass pinentry-curses - # mail + ## mail isync msmtp neomutt urlview notmuch - # programming languages and compilers + ## programming languages and compilers rustup cargo-flamegraph cargo-watch # python3 stack gcc + binutils-unwrapped gnumake cmake - # I heard you like man pages? + gdb + valgrind + heaptrack + ## I heard you like man pages? man-pages - # git and friends + ## git and friends git gitAndTools.delta gitAndTools.gitui - # terminal, browsers, text editing + ## terminal, browsers, text editing kitty vscodium eclipses.eclipse-platform typora firefox - # time tracking + next + ## time tracking watson - # file managers + ## file managers ranger xfce.thunar - # document viewers + ## document viewers mupdf pdfpc zathura - # PDF manipulation + ## PDF manipulation podofo poppler_utils - # image manipulation + ## image manipulation gimp inkscape libheif - # LaTeX + ## LaTeX texlive.combined.scheme-full - # the eternal pain continues + ## the eternal pain continues libreoffice-fresh - # video and media applications + ## video and media applications zoom-us teams youtube-dl mpv streamlink ffmpeg-full - # messenger + ## messenger tdesktop signal-desktop (weechat.override { @@ -305,7 +316,7 @@ }; # extraBuildInputs = [ python38Packages.Logbook ]; }) - # networking + ## networking openconnect ]; @@ -350,6 +361,7 @@ # use redshift services.redshift.enable = true; + services.redshift.temperature.night = 3500; # allow brightness control services.illum.enable = true; diff --git a/entropy/nyxt/init.lisp b/entropy/nyxt/init.lisp new file mode 100644 index 0000000..5df0569 --- /dev/null +++ b/entropy/nyxt/init.lisp @@ -0,0 +1,7 @@ +(in-package :next-user) + +(defclass my-buffer (buffer) + ((default-modes :initform + (cons 'vi-normal-mode (get-default 'buffer 'default-modes))))) + +(setf *buffer-class* 'my-buffer)