diff options
author | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2022-02-16 21:45:26 +0700 |
---|---|---|
committer | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2022-02-16 21:45:26 +0700 |
commit | 44f511c028bd46d57f8fefd0a7f538e46c413b05 (patch) | |
tree | 93bc246a670140c14463def6efd98369d293df2d /nix | |
parent | 39ad889f9bcc01c30c554f1ebbb953e1d232b98a (diff) | |
download | dotfiles-44f511c028bd46d57f8fefd0a7f538e46c413b05.tar.gz |
Add aerc config
Also update relevant configurations.
Diffstat (limited to 'nix')
-rw-r--r-- | nix/awesome.nix | 2 | ||||
-rw-r--r-- | nix/configuration.nix | 3 | ||||
-rw-r--r-- | nix/devel.nix | 9 |
3 files changed, 9 insertions, 5 deletions
diff --git a/nix/awesome.nix b/nix/awesome.nix index c9bde99..76b616a 100644 --- a/nix/awesome.nix +++ b/nix/awesome.nix @@ -36,7 +36,7 @@ environment.systemPackages = with pkgs; [ gnome.adwaita-icon-theme networkmanagerapplet qt5ct clipbuzz keynav playerctl pulsemixer xclip xdotool xorg.xkill - aerc amfora ncdu ranger ueberzug rxvt-unicode vim_configurable + aerc amfora dante ncdu ranger ueberzug rxvt-unicode vim_configurable arandr audacious keepassx-community liferea scrot zathura dino firefox libreoffice mepo nheko tor-browser-bundle-bin transmission-gtk ]; diff --git a/nix/configuration.nix b/nix/configuration.nix index 3317930..7c44c19 100644 --- a/nix/configuration.nix +++ b/nix/configuration.nix @@ -64,7 +64,7 @@ }; environment.systemPackages = with pkgs; [ - compsize cryptsetup htop inotify-tools killall rsync unzip + compsize cryptsetup htop inotify-tools killall rsync unzip zip oathToolkit isync stow tor w3m wget yt-dlp mpv pavucontrol sent vimiv-qt yacreader ffmpeg gimp imagemagick inkscape mkvtoolnix pdftk simplescreenrecorder sox @@ -79,7 +79,6 @@ pipewire = { enable = true; alsa.enable = true; - alsa.support32Bit = true; pulse.enable = true; # jack.enable = true; diff --git a/nix/devel.nix b/nix/devel.nix index c6656ad..b7321a9 100644 --- a/nix/devel.nix +++ b/nix/devel.nix @@ -5,7 +5,7 @@ exa fd gitAndTools.gitFull glow jq kvm minicom manpages ripgrep rlwrap gcc lua python3 rakudo zig bintools gdb gnumake luaPackages.luacheck mypy pkg-config - plantuml sile texlive.combined.scheme-full + plantuml texlive.combined.scheme-full ] ++ (with python3Packages; [ flit pip tox ]); programs.mtr.enable = true; @@ -15,7 +15,12 @@ }; services = { - # openssh.enable = true; + openssh = { + enable = true; + passwordAuthentication = false; + kbdInteractiveAuthentication = false; + }; + ipfs = { enable = true; user = "sea"; |