diff options
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"; |