i love nixos but don’t understand how to make it take up a smaller amount on disk
configuration.nix
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running ‘nixos-help’).
{ config, pkgs, ... }:
{
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
<nixos-hardware/lenovo/thinkpad/x280> # sudo nix-channel --add https://github.com/NixOS/nixos-hardware/archive/master.tar.gz nixos-hardware && sudo nix-channel --update
];
# Bootloader.
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/nvme0n1";
boot.loader.grub.useOSProber = true;
boot.loader.timeout = 1;
boot.supportedFilesystems = [ "ntfs" ];
networking.hostName = "nixos"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
# Enable networking
networking.networkmanager.enable = true;
# Enable network manager applet
programs.nm-applet.enable = true;
# Set your time zone.
time.timeZone = "Europe/Budapest";
# Select internationalisation properties.
i18n.defaultLocale = "en_GB.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "hu_HU.UTF-8";
LC_IDENTIFICATION = "hu_HU.UTF-8";
LC_MEASUREMENT = "hu_HU.UTF-8";
LC_MONETARY = "hu_HU.UTF-8";
LC_NAME = "hu_HU.UTF-8";
LC_NUMERIC = "hu_HU.UTF-8";
LC_PAPER = "hu_HU.UTF-8";
LC_TELEPHONE = "hu_HU.UTF-8";
LC_TIME = "hu_HU.UTF-8";
};
# Enable the X11 windowing system.
services.xserver.enable = true;
# Enable the LXQT Desktop Environment.
services.xserver.displayManager.lightdm.enable = true;
services.xserver.desktopManager.lxqt.enable = true;
# Configure keymap in X11
services.xserver = {
layout = "hu";
xkbVariant = "";
xkbOptions = "caps:ctrl_modifier";
};
# Configure console keymap
console.keyMap = "hu";
# Enable CUPS to print documents.
services.printing.enable = true;
# Enable sound with pipewire.
sound.enable = true;
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
# If you want to use JACK applications, uncomment this
#jack.enable = true;
# use the example session manager (no others are packaged yet so this is enabled by default,
# no need to redefine it in your config for now)
#media-session.enable = true;
};
# Enable touchpad support (enabled default in most desktopManager).
# services.xserver.libinput.enable = true;
# Define a user account. Don't forget to set a password with ‘passwd’.
users.users.user = {
isNormalUser = true;
description = "user";
extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs; [
# firefox
# thunderbird
ungoogled-chromium
ffmpeg
losslesscut-bin
leafpad
xorg.xkill
gimp
pkgs.djview
qpdfview
calibre
p7zip
ktimer
arandr
xclip
scantailor
screen
ventoy-bin
aria2
pkgs.pv
cron
galculator
weechat
qbittorrent
# anydesk # this has caused problems before with updating
nomachine-client
mpv
trash-cli
openjdk
lxqt.qlipper
libsForQt5.kcharselect
chirp
brightnessctl
par2cmdline
openai-whisper
syncthing
pb_cli
inkscape
winbox
yt-dlp
iperf
synergy
moonlight-qt
tlp # sudo tlp setcharge 50 65 BAT0 # good for battery
gpsbabel-gui
gpxsee-qt6
sunwait
xdotool
ecasound
mumble
wakeonlan
libreoffice-qt
streamlink
gpodder
flameshot
pngquant
fswebcam
plocate
fstl
samba
slskd
kiwix
python3
fastfetch
hardinfo
];
};
# Enable automatic login for the user.
services.xserver.displayManager.autoLogin.enable = true;
services.xserver.displayManager.autoLogin.user = "user";
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
# wget
atkinson-hyperlegible
python311Packages.google-api-python-client
python311Packages.pip
tt-rss
tt-rss-theme-feedly
];
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
# programs.mtr.enable = true;
# programs.gnupg.agent = {
# enable = true;
# enableSSHSupport = true;
# };
# List services that you want to enable:
# Enable the OpenSSH daemon.
# services.openssh.enable = true;
# Open ports in the firewall.
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether.
networking.firewall.enable = false;
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. It‘s perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "23.11"; # Did you read the comment?
}
after
nix-env --delete-generations 14d;nix-store --gc;nix-store --optimise; du -hs /nix/
/nix is 66 gigabytes, and the entire system sits about 77 gigabytes. now i know some of the programs i use aren’t the lightest that’s available, i have my choices, but i this is well over what even a comparable windows setup would take up. what’s even worse that it keeps getting bigger by about 10 gigabytes a month. what can i do to make it smaller? i know if i reinstall the entire thing from scratch i’ll have a somewhat small setup for a while, and i have been doing that, but it’s such an amateur solution. the whole appeal of nixos for me was never again having to reinstall anything but that isn’t working out to me because of user error. help?
what does nix-store --gc --print-roots
outputs? this sounds like you are using some nix based thing which is creating garbage collector roots, i use nix-direnv and one time i removed almost 100GB of stuff in the nix store after deleting the roots that nix-direnv creates.
2 Likes
nix-env --delete-generations 14d
will only operate on the user’s default profile. So 1) You need to do this as root, and 2) The system profile is not root’s default profile. You need --profile /nix/var/nix/profiles/system
. Or, frankly, I find it easier to just do sudo nix-collect-garbage --delete-older-than 14d
which will remove generations from all profiles and do the GC in one command.
3 Likes
nix-store --gc --print-roots
outputs the following:
/home/user/.local/state/nix/profiles/channels-1-link -> /nix/store/1lkr4wfa2f290rvyl3zj7339nblwfpw6-user-environment
/home/user/.local/state/nix/profiles/channels-2-link -> /nix/store/57904rflsfh46y7fxi62rzc7sidc9vmq-user-environment
/home/user/.local/state/nix/profiles/profile-87-link -> /nix/store/bp4vgivx19382cp7p0mjadjnkpmf2r4s-user-environment
/nix/var/nix/profiles/per-user/root/channels-1-link -> /nix/store/xc3h7hmrs5mc2rajsb070p6i4vrhnnnp-nixos-23.11.2217.d02d818f22c7
/nix/var/nix/profiles/per-user/root/channels-10-link -> /nix/store/hpi7dil7j6gk7kmgdfr1wyppkh49qgp8-user-environment
/nix/var/nix/profiles/per-user/root/channels-11-link -> /nix/store/2d684sr4dl6qichhl4n66p17im7z6lbm-user-environment
/nix/var/nix/profiles/per-user/root/channels-12-link -> /nix/store/v9qyr5jjz9hv7ia0gjynb6vrab6w3qd0-user-environment
/nix/var/nix/profiles/per-user/root/channels-13-link -> /nix/store/ccpi8fh17z9mf0nmgrakqyvf5bivaabf-user-environment
/nix/var/nix/profiles/per-user/root/channels-14-link -> /nix/store/5gd8zymq51rl3hqh296zh1jcc3hxms27-user-environment
/nix/var/nix/profiles/per-user/root/channels-15-link -> /nix/store/ybgdi3wi82zh0qa936802slckmyr2b78-user-environment
/nix/var/nix/profiles/per-user/root/channels-16-link -> /nix/store/l8hf33jgg4nsvm63v2iqc269wx1pz1y9-user-environment
/nix/var/nix/profiles/per-user/root/channels-17-link -> /nix/store/1f7fgvdlxh3lpyqk19x2zbkrwmzydcvy-user-environment
/nix/var/nix/profiles/per-user/root/channels-2-link -> /nix/store/1lkr4wfa2f290rvyl3zj7339nblwfpw6-user-environment
/nix/var/nix/profiles/per-user/root/channels-3-link -> /nix/store/9wrcng40y9pr0s4lmcjis5abmpk4xx9x-user-environment
/nix/var/nix/profiles/per-user/root/channels-4-link -> /nix/store/xnia41dhmqgz89lq0bc4wagh4ac3z074-user-environment
/nix/var/nix/profiles/per-user/root/channels-5-link -> /nix/store/955v8lmc1mhpjhxps6kyhfpmdv72wrmq-user-environment
/nix/var/nix/profiles/per-user/root/channels-6-link -> /nix/store/gn7zg1pgn10h3d53g7l489yy7kdqs3am-user-environment
/nix/var/nix/profiles/per-user/root/channels-7-link -> /nix/store/j31kn1iidyf1anwa4mm3c6wzynd58vky-user-environment
/nix/var/nix/profiles/per-user/root/channels-8-link -> /nix/store/lxxbmksw83j6rakri8qqci3jmpy7l22h-user-environment
/nix/var/nix/profiles/per-user/root/channels-9-link -> /nix/store/adfrqdg1957f45q0qb43jm5cw624qf07-user-environment
/nix/var/nix/profiles/system-1-link -> /nix/store/gzd5h38nls5n6ppy5hsf0apdyvlmpnhc-nixos-system-nixos-23.11.2217.d02d818f22c7
/nix/var/nix/profiles/system-10-link -> /nix/store/isbsmi67lyisf81apyq6r6v0qg0d29jr-nixos-system-nixos-23.11.5353.878ef7d9721b
/nix/var/nix/profiles/system-11-link -> /nix/store/zzqd723y8bgf19691x66d9ihglgmi0hi-nixos-system-nixos-23.11.5541.56528ee42526
/nix/var/nix/profiles/system-12-link -> /nix/store/3cqal3p0by6cg7dvk6q7w9rxllngx36z-nixos-system-nixos-23.11.5742.219951b495fc
/nix/var/nix/profiles/system-13-link -> /nix/store/0pb4yvprkmwcvyi9k50ik6zkrq86k4wl-nixos-system-nixos-23.11.5871.72da83d9515b
/nix/var/nix/profiles/system-14-link -> /nix/store/k8gm704xphgk4lxcwhz849wwdmja5wir-nixos-system-nixos-23.11.6621.dd37924974b9
/nix/var/nix/profiles/system-15-link -> /nix/store/4za753nb7ir93pi5m06mmmfwlbyzhl62-nixos-system-nixos-23.11.6621.dd37924974b9
/nix/var/nix/profiles/system-16-link -> /nix/store/ii3r5a1k5fawhcmq6a3al4l9bxdiydla-nixos-system-nixos-23.11.6827.383ffe076d9b
/nix/var/nix/profiles/system-17-link -> /nix/store/i4xzjjlgndzk9bhldh3ql5c1fr2n95cf-nixos-system-nixos-23.11.6869.651b4702e27a
/nix/var/nix/profiles/system-18-link -> /nix/store/i6g84c6qshq08ki9zaly7bq1d5xczhi7-nixos-system-nixos-23.11.7071.71bae31b7dbc
/nix/var/nix/profiles/system-2-link -> /nix/store/8mj3kcsah06cs5kyrdwwazy95ypgv06l-nixos-system-nixos-23.11.2217.d02d818f22c7
/nix/var/nix/profiles/system-3-link -> /nix/store/absasxvx9a30myrqn805w8bklfb0113d-nixos-system-nixos-23.11.2217.d02d818f22c7
/nix/var/nix/profiles/system-4-link -> /nix/store/6y6icbbbwwb7vvqxiyigjwlfhh9yibz8-nixos-system-nixos-23.11.2561.b0b2c5445c64
/nix/var/nix/profiles/system-5-link -> /nix/store/n7dlipqz7xlcnzf1qg8js3h8m0kvsjxk-nixos-system-nixos-23.11.2774.3dc440faeee9
/nix/var/nix/profiles/system-6-link -> /nix/store/0y8x3ishp02bf89488i1b1xhs9jdiiia-nixos-system-nixos-23.11.3496.a77ab169a83a
/nix/var/nix/profiles/system-7-link -> /nix/store/ns2hwyl6xidirpkjm23h13cwhzqvwkxs-nixos-system-nixos-23.11.3920.25e3d4c0d359
/nix/var/nix/profiles/system-8-link -> /nix/store/2d2p3cr451fl91gas3v502r9k1vlfvfa-nixos-system-nixos-23.11.4117.6832d0d99649
/nix/var/nix/profiles/system-9-link -> /nix/store/h1rf909kxlp62y9gb3kaljqy1hhvngwg-nixos-system-nixos-23.11.4315.c68a9fc85c2c
/run/booted-system -> /nix/store/i6g84c6qshq08ki9zaly7bq1d5xczhi7-nixos-system-nixos-23.11.7071.71bae31b7dbc
/run/current-system -> /nix/store/i6g84c6qshq08ki9zaly7bq1d5xczhi7-nixos-system-nixos-23.11.7071.71bae31b7dbc
{censored} -> /nix/store/01lab4pnjg7516j5h6gfhlb0dkcyc83p-gdk-pixbuf-2.42.10
{censored} -> /nix/store/05pkc2nr6zkp0mzcai91qq49nhy56bpp-mesa-23.1.9
{censored} -> /nix/store/0arbyvsaz064wczxsb9ivqcjz21hxgv3-flac-1.4.3
{censored} -> /nix/store/0brl43yi3q2bpdslkx224acg7x4cl87p-libcpuid-0.6.4
{censored} -> /nix/store/0d8804xpq8hjd1i0i1mw3m37jwvm9n8k-python3.11-dbus-python-1.2.18
{censored} -> /nix/store/0hhx1g2m9disccjzz1gyymn310zm1x8q-curl-8.4.0-bin
{censored} -> /nix/store/0lvxa4gry4s7mib83xxnw1pybczkh5yb-libkrb5-1.20.2
{censored} -> /nix/store/0mdzkvr138z24n6khr5yvi3chng5sf1s-xcb-util-wm-0.4.2
{censored} -> /nix/store/0n2ag0va6winw5si2q48nzm4vwv60y9x-perl5.38.2-URI-5.21
{censored} -> /nix/store/0vc9rhkrl8wggds145vz7b78fnmg4ha8-libgudev-238
{censored} -> /nix/store/11hr7mnag6jijlwpfm68yqi026avdll1-muparser-2.2.3
{censored} -> /nix/store/15i0gk9k23f5njlvq62rr0j3r7hdrhfm-graphite2-1.3.14
{censored} -> /nix/store/1a41kvz28yk0k5ry58x3lj0s1yd2yrgm-bzip2-1.0.8
{censored} -> /nix/store/1kyrna2yvlnfkbnfhd9rwgwpg4l0fs29-openssl-3.0.13
{censored} -> /nix/store/1msx65nvvqfxjn9yg5yb9ydb041rxmd0-libcamera-0.0.5
{censored} -> /nix/store/1mz0lqh5gspk5pxcb951x7cf66h6c419-libdeflate-1.19
{censored} -> /nix/store/1pc7v2ly04xmwj7qf99v0sqr0a402yvw-acl-2.3.1
{censored} -> /nix/store/1snav0a4qffq6jqc75d3cll6ji7vvcvw-mtdev-1.1.6
{censored} -> /nix/store/1vkadx8rmz4lbkgy22hlb1b6gx538qbc-libatasmart-0.19
{censored} -> /nix/store/1w63rbr3z83b8k0aizsbhbvlj4pjpmv8-lxqt-panel-1.4.0
{censored} -> /nix/store/1wskhy39i2a262120g3qzxpdvkzjrf4k-libexif-0.6.24
{censored} -> /nix/store/204ak4443zipfr2yi6y5wal05bck1qqg-coreutils-9.3
{censored} -> /nix/store/20qpjwy2hh1yrskwcma9k9cjkv2g0l28-lesspipe-2.10
{censored} -> /nix/store/222n6a4an6gplr25b4aiv91mr7vdwn23-libblockdev-3.0.4
{censored} -> /nix/store/23dyj26v2sh8ykg1m49hkgs6qw6sckfh-libogg-1.3.5
{censored} -> /nix/store/23l0c1mx09vzlfjyghpjxwkwdap0y431-libxcb-1.16
{censored} -> /nix/store/263bmq2y4dazl08rf7rclhhyiq9gl6fi-perl5.38.2-HTML-Tagset-3.20
{censored} -> /nix/store/28s3znryb0mmsz95a0xhzavlhh8q91xw-dejavu-fonts-2.37
{censored} -> /nix/store/2gn7320mr9441fj7fpl4xwsc6y84990p-user-environment
{censored} -> /nix/store/2gr505q5awmx75bya8mnlilpqxhb0nin-libwacom-2.8.0
{censored} -> /nix/store/2jwb0nzkr65x1p6wwrmnv03izwyn2w19-libcap-2.69-lib
{censored} -> /nix/store/31axfs6jsslijkdybyl3410zwfy1gvky-gcc-12.3.0-lib
{censored} -> /nix/store/3bdkbvpgjxs96f0hmcp486qgblynzf91-libdrm-2.4.118
{censored} -> /nix/store/3d8knz4y4bxycdykvh084hwi0as4i8yr-qtimageformats-5.15.12
{censored} -> /nix/store/3k583zlfywb24dv90g3z8cikxs8fh200-libcanberra-0.30
{censored} -> /nix/store/3mwz2r71kzjan2qgq7qmdpngl7m98z7v-qtdeclarative-5.15.12-bin
{censored} -> /nix/store/3q1hcqqxpc6kfgq03v8n51n1aibhn2mh-gsettings-desktop-schemas-45.0
{censored} -> /nix/store/3qikcmmh33nrzrzz042l40mvnrhi9m0i-libplist-2.3.0
{censored} -> /nix/store/4dqnnjx9946i91zici9vi79ap88xvlns-libepoxy-1.5.10
{censored} -> /nix/store/4jb5ncnw2x11jkvwhhjvzwdj2fvk4mzk-libelf-0.8.13
{censored} -> /nix/store/4p7ais12np0wflhwlln6d9pdawb4hwhm-libusb-1.0.26
{censored} -> /nix/store/4zn6jcib0rh70srlzq1r5q4j9aqsh7b2-imlib2-1.12.1
{censored} -> /nix/store/57dqrh5d96g2lriyyf81j53vzphfflh9-bash-5.2-p15
{censored} -> /nix/store/59xjba0lb4wnm1zrals7pgshv571bak8-libgphoto2-2.5.31
{censored} -> /nix/store/5jvwc1s5bqvk3isij3qv8l5asfzm5dr3-wayland-1.22.0
{censored} -> /nix/store/5xnpald4q4didq35ah7rapqg93nbmlbh-sbc-2.0
{censored} -> /nix/store/63jzrrzsjswkdqb0mw17dw8dqnika1ng-aws-c-auth-0.7.0
{censored} -> /nix/store/646lgdybahspbrhrh0srk5pqlk4wj3fp-perl5.38.2-LWP-MediaTypes-6.04
{censored} -> /nix/store/64hf6xbsw4wv5j61mzv8zrdal85g0gb6-glib-networking-2.78.0
{censored} -> /nix/store/64rpbzdxjwf4z62p4czi3nq74ihwd4qy-pcmanfm-qt-1.4.0
{censored} -> /nix/store/6j5rf26lh4zv005w1gk1rh9p0ydw8kfj-aws-c-sdkutils-0.1.12
{censored} -> /nix/store/6xc77r4pakdvfx4xkinkadirmnm7jaax-gnutls-3.8.3
{censored} -> /nix/store/6xzm2wx8696mbrdp1jla4pfs8d7737my-libXcursor-1.2.1
{censored} -> /nix/store/6ykl7j8y7fd1nhmc92xp94wik06pxw53-perl5.38.2-Mozilla-CA-20230821
{censored} -> /nix/store/739m8vy14imyl6k0xpnqv0iv18zcaxsb-gpgme-1.23.0
{censored} -> /nix/store/73dnrmhi1xcdkyfclbg39d2vk8av5jjg-libssh2-1.11.0
{censored} -> /nix/store/775mjzivsdn2vpfz0xhfvpwy0dr1q5j1-libidn2-2.3.4
{censored} -> /nix/store/7d6vfgz5rpw133sszvwbicm39f7bcn48-libmpg123-1.32.3
{censored} -> /nix/store/7fiy6w8qcfzj310g5ivfmwr8c5ggrkjq-libxcvt-0.1.2
{censored} -> /nix/store/7gpgncfi09s7wxfh27xk3xyb4yqnl9gh-libvorbis-1.3.7
{censored} -> /nix/store/7knxdm1gn6y5fw52f71adnn07yxka6f4-libsecret-0.21.2
{censored} -> /nix/store/7qimj9zwfls669p6m9mpglh56jxpadl9-libXcomposite-0.4.6
{censored} -> /nix/store/806pw1b3bf8vfbfsccnd44yah4a8aval-dbus-1.14.10
{censored} -> /nix/store/81n2gd2h9i3pjxhn0vsa6nqp89b6hcjd-fuse-3.16.2
{censored} -> /nix/store/833mf0zj31p2ycia7dlrzr7cjv6irhmi-perl5.38.2-Net-SSLeay-1.92
{censored} -> /nix/store/84mckgalcglfjfcx9rk6n2k0nmyzcjlr-dejavu-fonts-minimal-2.37
{censored} -> /nix/store/88ivxh7nrsz8x08yjizhii7bfi96baiv-dbus-glib-0.112
{censored} -> /nix/store/88z1a2f582yrbs427iznh18xn2yyy957-avahi-0.8
{censored} -> /nix/store/8a0xys4nl4zzr45xi4j2076hzp1lqv33-libpaper-1.1.28
{censored} -> /nix/store/8cvzppzdarvbyc608p6f2rry8f36r4mj-kmod-31
{censored} -> /nix/store/8d7g3k5bhi6rdw3r1ac9by4xr6m37iaf-gcr-3.41.2
{censored} -> /nix/store/8g0xw7nbpzqdvvjh6nib8b0bqbkrp240-cairo-1.18.0
{censored} -> /nix/store/8g2v8z8f00w1xcn34mygg8nzp4lxzrdw-libgcrypt-1.10.2
{censored} -> /nix/store/8hl56jinm7c6rb6kk12sbkg5k8jr8hh7-mesa-23.1.9-drivers
{censored} -> /nix/store/8njxzcrxydw9kd4sqv0kgy29805p466n-x11-ssh-askpass-1.2.4.1
{censored} -> /nix/store/8q447fcj0f09rm2sdqxz42y9ix34z31s-ldacBT-2.0.2.3
{censored} -> /nix/store/8r075vz128q989cf5bvchbh3jhmvrk5c-upower-1.90.2
{censored} -> /nix/store/8w2zbyhdnw83c3cspl4dhks3rp4hcxnw-liblxqt-1.4.0
{censored} -> /nix/store/8xlagj5mw62kp4ib0iq5x48m9079fi7m-libpciaccess-0.17
{censored} -> /nix/store/90axagqbzn8x2kc2gcgmxa6plwnqxvaq-libXfont2-2.0.6
{censored} -> /nix/store/93wvxpl3f74mrvj54x3vhbj7vf3n5axw-perl5.38.2-HTTP-Negotiate-6.01
{censored} -> /nix/store/947p94rpg1lr06ckw1ic45p7lh26zyas-udisks-2.10.1
{censored} -> /nix/store/9as08jdyqzy8ilcq90z8bqksgy86rm0j-perl5.38.2-WWW-RobotRules-6.02
{censored} -> /nix/store/9b3225iw2s3s2q2nh10ysg291hvxdjnd-util-linux-2.39.2-bin
{censored} -> /nix/store/9cr1mk4fjc012xb140mgxqb6dl2pn8jd-pipewire-1.0.1
{censored} -> /nix/store/9d1cj7s697wgx41s7igd3gmybq19zl9w-libfreeaptx-0.1.1
{censored} -> /nix/store/9dj0v04wg47nxvr7ildwwkdk731mhnby-gvfs-1.52.2
{censored} -> /nix/store/9hxil7jbh8wvi5i2j60l759cxkcr3d71-editline-1.17.1
{censored} -> /nix/store/9lkbdjziqp65pmbl1hqdwgflxkgyv768-tracker-3.6.0
{censored} -> /nix/store/9pxvky66za4r749gbbpl86jl2gdc0ghb-s2n-tls-1.3.56
{censored} -> /nix/store/9r9gvjs9mi6nw98nc4qny6xw4pa7sqfi-lxqt-notificationd-1.4.0
{censored} -> /nix/store/9sga41znf2cl59fvibrikw0b10mh5865-libtool-2.4.7-lib
{censored} -> /nix/store/a13fw6xw8fmpf39blrp86w6r7nkfrim5-wireplumber-0.4.17
{censored} -> /nix/store/a4743d91mjq9zd2hmwvbx37269sp8rjd-libXrender-0.9.11
{censored} -> /nix/store/a5pamyh03wd3cwa49xydd64d957nxsyh-fdk-aac-2.0.2
{censored} -> /nix/store/af4axls2naggm7dl1pg0ri6r5yycrj32-perl5.38.2-HTML-Parser-3.81
{censored} -> /nix/store/afq0jnlfx6k65y4gwf6aw8lbw076mhnq-gmp-with-cxx-6.3.0
{censored} -> /nix/store/afzhbj67dlamdb09239fgpxvqpy6pmm5-brotli-1.1.0-lib
{censored} -> /nix/store/aj01kbbijl46wrzig6v09a0s5hix947p-libX11-1.8.7
{censored} -> /nix/store/al4p0cdw6al9v54hj4rk7g8aff5rfzza-aws-c-s3-0.3.13
{censored} -> /nix/store/amfd25sk6xiffjp6vc21y4k2bgywv570-desktops
{censored} -> /nix/store/ami8lw1m9snnzb5sz7a6cns2bnyc8c4z-gyre-fonts-2.005
{censored} -> /nix/store/ar8b55f8sa69ck6h4g678l3gl5933ifc-maim-5.7.4
{censored} -> /nix/store/aschbjla39w2z9gjkb2hs9m5jcwpy8w9-perl5.38.2-File-Listing-6.16
{censored} -> /nix/store/azzlqb8nwafi8040iln07acj0rv3imcx-pcre-8.45
{censored} -> /nix/store/b0f841bbad586sggzalykh7i9mbw4816-libXtst-1.2.4
{censored} -> /nix/store/b36xzxc0mwrgk1082ar0bl6vk6bj8qhn-libevdev-1.13.1
{censored} -> /nix/store/bcj6bp74flm49psa2q8cg4szcbadz64m-libdbusmenu-gtk3-16.04.0
{censored} -> /nix/store/bg3nzml0s749padzw2xwbbvcgbjms372-qtx11extras-5.15.12
{censored} -> /nix/store/bk1al3r0bvk0wm7sx1b5szla6xhljwp0-libfm-qt-1.4.0
{censored} -> /nix/store/bnxyppx16v3vnng9inwf63lqydxgwhqw-libtiff-4.6.0
{censored} -> /nix/store/bp8iz05hzsj75w17hb373qakjl2p2lgx-libsndfile-1.2.2
{censored} -> /nix/store/bq8rhdfkxbmqxwkhrdkqycgfbk6h6y3n-xorg-server-21.1.13
{censored} -> /nix/store/bslzz6msa27s4swghb3cylgicsyarnmr-libbpf-1.2.2
{censored} -> /nix/store/c356msb88psprqd62cj7y30vm0hvkdkn-libpsl-0.21.2
{censored} -> /nix/store/c3q75q9n8qm2068lsin0qjvm6axnqz60-gtk+3-3.24.41
{censored} -> /nix/store/c5irhrvimp4s99pa6sk8xsg75r84m16p-procps-3.3.17
{censored} -> /nix/store/c8gqr1vy5gq1cr8ihrqj7w5cfs1xjqzd-kernel-modules
{censored} -> /nix/store/ccqrdf49jwa55x0b9ic26wjp0r09f394-lightdm-1.32.0
{censored} -> /nix/store/cg9q5yjfxqad2i9h31ng1i5r4yb09q3l-gnome-online-accounts-3.48.1
{censored} -> /nix/store/chvr8lx36qd8yx1rq39sq93zdhkd9yq3-network-manager-applet-1.34.0
{censored} -> /nix/store/clw3mmwclp2wfhrdchkvj7cch4mqra27-libXi-1.8.1
{censored} -> /nix/store/cm4y85m9qd5cql3p4p0bz0hrmjwhdrj2-libimobiledevice-glue-1.0.0
{censored} -> /nix/store/cngqln6kwgb8yvavdhk4wglsqvnpgznj-qtsvg-5.15.12-bin
{censored} -> /nix/store/csn7rx0s7zapiz291n3i0vw2v2kh8s3v-cryptsetup-2.6.1
{censored} -> /nix/store/cwclvbf586ycf7c3mmjpp9hib4d3a3ax-libxshmfence-1.3.2
{censored} -> /nix/store/czqajzvgdvw3pi1bwfx999nh2hx4h2nx-breeze-icons-5.113.0
{censored} -> /nix/store/d81iqvx9qwnkdh8gw3ajhgn6w667mcgs-throttled-0.10.0
{censored} -> /nix/store/ddcr4jw70djdxbk78s000wrpr30hjjk2-mpfr-4.2.1
{censored} -> /nix/store/ddfiqhpg08pikha9jqg9hy8nl37wcn2n-libapparmor-3.1.6
{censored} -> /nix/store/dfkcnzv4fg5pr8ly88jdn206i1vhvzfg-openbox-3.6.1
{censored} -> /nix/store/dhiwasm9a2gr25zckb3qzhh7lhl0i4y4-intel-media-driver-23.3.5
{censored} -> /nix/store/dma4vzpi1zkga87106sfhhycjzzxgqz1-systemd-minimal-libs-254.10
{censored} -> /nix/store/dmyigsnh2hwnlqjpj6dwg68d5whdq8xl-fc-cache
{censored} -> /nix/store/dn6mhhr92bh3ad0n4pd1538ww88khjii-nix-2.18.1
{censored} -> /nix/store/dnbkb61z6s1k73pn22b9grhf64vmk1l5-libXft-2.3.8
{censored} -> /nix/store/dpkh0p9mq1cnd232akqpc5pfzfk15841-ungoogled-chromium-unwrapped-124.0.6367.201
{censored} -> /nix/store/dsi74ha948w4hkafjmd56kabfrfx9kh7-qtwayland-5.15.12-bin
{censored} -> /nix/store/dy1qqippy7cnpg8qhl3kxic9z2gn01yv-libbluray-1.3.4
{censored} -> /nix/store/dys2l3qrwgn74rn7vz66qs3abargkqng-libmng-2.0.3
{censored} -> /nix/store/f1az1p61afgzvm6rrpf2bfp8nl881x48-kidletime-5.113.0-bin
{censored} -> /nix/store/f328mmss389y68w1k2qii6v88i8wd50d-accountsservice-23.13.9
{censored} -> /nix/store/fcq6752xbm3ci0jq37b5pyk1rjnyhmrb-tzdata-2024a
{censored} -> /nix/store/fcwhkhmzmf6y75m41zgzykyf66plgjm7-coreutils-full-9.3
{censored} -> /nix/store/fdbyxjjqfrymwfsxd92aakjw8b4crhav-lxqt-runner-1.4.0
{censored} -> /nix/store/fh4k4340crl8r2zzk1mp877r76lcw0n5-glibc-locales-2.38-66
{censored} -> /nix/store/fh7xfwj0x0kfzwyvw58wi4hvbld3r9nr-lxqt-qtplugin-1.4.0
{censored} -> /nix/store/fhi4f3p9kj2cil28pa6fwp2r0hp8mpg9-cups-2.4.7
{censored} -> /nix/store/fx4g7dhyvaqb1f6bmrp6in1kgfmr7qyj-cups-progs
{censored} -> /nix/store/g06fm3kb3b75b22dnlh98vhcv1gw7wmf-networkmanager-1.44.4
{censored} -> /nix/store/g3dkgqjs0ldq5f4lk5p1kgcz5qdl9n7y-libfontenc-1.1.7
{censored} -> /nix/store/g3l1jh6mjnvg3n0ln0z50m1rxk8xz7k2-libndp-1.8
{censored} -> /nix/store/g4aihggl5qknyr99sxm99mhbcglv33w4-rtkit-0.13
{censored} -> /nix/store/g4k4xd78wxhqsiln2aj40j94cdc53265-gcr-4.1.0
{censored} -> /nix/store/g7wgk5lqmnsgs1cns9z88fgh88z5akr2-aws-checksums-0.1.17
{censored} -> /nix/store/g84s3q2rqd93jawhk4fdrsm0z43qxhz6-libpulseaudio-16.1
{censored} -> /nix/store/giijbal5w14nkyp7iifb3s9gfy520vbi-gnome-vfs-2.24.4
{censored} -> /nix/store/gismc488kqqy3h15377269sl4ib6w0qp-keyutils-1.6.3-lib
{censored} -> /nix/store/gj40jan5r7y6gcrgpqkx4ds8ks2s5n5f-attr-2.5.1
{censored} -> /nix/store/gkdri4nqgkb2802cpvsfazsi1qd6sj04-json-c-0.16
{censored} -> /nix/store/grxhyjp838kk88vx0bykqflq0sis6i17-findutils-4.9.0
{censored} -> /nix/store/gvmxgwp11jygcwlxinxi73cc9sz9qpxp-openjdk-19.0.2+7
{censored} -> /nix/store/gvn3gz66p9cy1npk1gdfl56mpg0s1rhg-liblc3-1.0.4
{censored} -> /nix/store/gww80rxm1kjql49xmn30194i452bl3wi-util-linux-minimal-2.39.2-lib
{censored} -> /nix/store/gz7nnz8pybi7r6j451vpn48w7bdw0ing-modemmanager-1.20.6
{censored} -> /nix/store/h5z7lwsr57mrbkqxrw6m2gqpl7dc2a9f-bluez-5.70
{censored} -> /nix/store/h61xys27hh0bp3krsphngids5imvh0iz-pcsclite-1.9.5
{censored} -> /nix/store/h7kcj2l3p9az6fyaz1hw6nqgg7wzjg4v-libpng-apng-1.6.40
{censored} -> /nix/store/h8jsqbn5bpci7v8gaxy7hrp2xc0s804v-qtbase-5.15.12
{censored} -> /nix/store/h97kl964lx2z0rxydjrgky3hxaqh3jc2-lxqt-globalkeys-1.4.0
{censored} -> /nix/store/h9p5ff72a2y2477vr3vrx99nkqc67wn1-pb_cli-unstable-2019-03-10
{censored} -> /nix/store/ha9cq72bvc56iaawsvm4apalvhwz8wcw-solid-5.113.0-bin
{censored} -> /nix/store/hbihcm2ic43axi5fglsnxqnybbqnvvgh-p11-kit-0.25.0
{censored} -> /nix/store/hgda8wmdj39q3w5a8xq4414qmzrvv9m2-intel-gmmlib-22.3.12
{censored} -> /nix/store/hgwl671r6r64i9irridpac5yhlhzcav8-xclip-0.13
{censored} -> /nix/store/hh41zhvxxdl7y0k87x984pzhwjq5jm6m-freefont-ttf-20120503
{censored} -> /nix/store/hnc0dzqn1q49cpa80783i6c3ybcn7658-xdg-desktop-portal-1.18.4
{censored} -> /nix/store/hsq68jbjd7ww4204pvgid9dvrfd8zrzb-kmod-31-lib
{censored} -> /nix/store/hzwmdg3axw9m3530fyyvni4h2flk72qi-libdbusmenu-qt-0.9.3+16
{censored} -> /nix/store/i2fd5dgmcvdly0v0gzyhglmd9szz3dfr-libunistring-1.1
{censored} -> /nix/store/i6mqxakgc315f4vd34pv3hrh12rmzvgi-libXdmcp-1.1.4
{censored} -> /nix/store/iaqk5099pz3nbhni9dm1ww2pmpi3fjaa-libXfixes-6.0.1
{censored} -> /nix/store/ibndzqigb2fa5yyj43sfzm7i5l0hyi1k-aws-c-common-0.8.23
{censored} -> /nix/store/ic9vafwllc3qnji97i2vd5bi8wigxh4p-json-glib-1.8.0
{censored} -> /nix/store/imr7whqhf7mllhh1k445ci0823jrz7xa-volume_key-0.3.11
{censored} -> /nix/store/ipgdbgm9cq05g0vgmgdq7yr6691bjdzv-xdg-portals
{censored} -> /nix/store/ixmjzlx8hs2kvf2n0am1br0gkph1cgnp-aws-c-cal-0.6.0
{censored} -> /nix/store/iz05mrzi4g4kaml85lx6sp97f5fxd8fq-zlib-1.3
{censored} -> /nix/store/j0x7fp4vila158gi3m8d2hxjz0w0wfd8-lttng-ust-2.13.6
{censored} -> /nix/store/j3gq0hbx046k8b29hhm1sj6rvmc0r9w1-lua-5.4.6
{censored} -> /nix/store/j4i1apfl7jybcgzhhy7h311bqpk57n5s-lxqt-policykit-1.4.0
{censored} -> /nix/store/j7vih8fh8hj02gfxzx7brwz316v06ql9-lame-3.100-lib
{censored} -> /nix/store/jhh8hkslz2wk84nfj4xv453igs11a9j0-nsncd-unstable-2023-10-26
{censored} -> /nix/store/ji7flplvqj5is8w63afcma94b10s2k9w-noto-fonts-emoji-2.038
{censored} -> /nix/store/jm7liign91ly9wmcwwxzidamcn7bc5yf-aws-c-event-stream-0.3.1
{censored} -> /nix/store/jnbk5v4vpi0mn241fzjqkw54xv1mpjm0-libunwind-1.6.2
{censored} -> /nix/store/jrvld1587y5xh9s9yl43dj9sdqv78h4m-expat-2.5.0
{censored} -> /nix/store/jsyc1wqflim3alrjn11wlh4jjfgbgar8-perl5.38.2-HTTP-Cookies-6.10
{censored} -> /nix/store/jwfagbl4ixlw2ykqf6dz4j4z2mwilzr0-libxml2-2.11.7
{censored} -> /nix/store/k3mqgwi1sfiq4g3lnrzk3nm3r6y01cmz-perl5.38.2-XML-Parser-2.46
{censored} -> /nix/store/k6cz2bwbzkp73awma1cq0lmncj93970i-jq-1.7.1-bin
{censored} -> /nix/store/k9gbs28hbvc5zxaf745d21d1qbvgclyx-libxcrypt-4.4.36
{censored} -> /nix/store/kb4k74903nxj7gfxkrcjd6bnl1cnpbr0-perl5.38.2-TimeDate-2.33
{censored} -> /nix/store/kd0armd8pgczanl4r1fff008nba38i43-libXScrnSaver-1.2.4
{censored} -> /nix/store/kj5qfi3j37dbggbvcjibijfqr94si6jd-libjpeg-turbo-2.1.5.1
{censored} -> /nix/store/kjy21l6vmjw1wdfli5rygi9mnlda1yli-menu-cache-1.1.0
{censored} -> /nix/store/kklxjz2rkccbwywvyprawhx5bfxxgz7f-libayatana-indicator-0.9.4
{censored} -> /nix/store/kkq9dxlz8q2fjxdv4lap4inx2wmkfyb1-libthai-0.1.29
{censored} -> /nix/store/kl9j7gm7wffws0i5fnyl1frmwv1gsmg1-libdatrie-2019-12-20-lib
{censored} -> /nix/store/kll0v4crawi2byx7831y4i5np5g5p6hh-glib-2.78.4
{censored} -> /nix/store/klx57n1cqia9q7rz17ylif1f8dbkqvq8-xf86-input-libinput-1.4.0
{censored} -> /nix/store/knl2m916dx1a7yn9da6ir0s1jf7z8rsp-gobject-introspection-wrapped-1.78.1
{censored} -> /nix/store/kr4vagm0q1xlh1z98wgzbkawssm2yq24-qttools-5.15.12-bin
{censored} -> /nix/store/kylrpjb2axhvg9kxkf4vmrn8qaavk60q-ayatana-ido-0.10.1
{censored} -> /nix/store/l2dx7ck8z5rbagzzac0h90srrm7gi1na-zstd-1.5.5
{censored} -> /nix/store/l3n8l32sawnmr563jhwlqfim11499ybz-pcre2-10.42
{censored} -> /nix/store/l46rfmgi4krjbqgfpp08cjs39fjgrk61-system-path
{censored} -> /nix/store/ld1y2ik1plhqggyj84n0gx39dyr0vdk4-ORBit2-2.14.19
{censored} -> /nix/store/li2vy71317k26kv7s8jpgfqrd86rnnqm-systemd-minimal-254.10
{censored} -> /nix/store/liil7bhd0i4sb2fsfkcxpka56778p48s-curl-8.4.0
{censored} -> /nix/store/ljgsm5f960bkia1qpzs3bkg0xyq09ijf-perl5.38.2-Net-HTTP-6.23
{censored} -> /nix/store/llqdmzbxyf5ch1vkbbnscxpy193j0pwi-libimobiledevice-1.3.0+date=2023-04-30
{censored} -> /nix/store/lmlrb7ysjbphaimrkh5iwqy541fr6svz-icu4c-73.2
{censored} -> /nix/store/lrwil01abqwa2r9g2clkjkzmpirgk749-lessconfig
{censored} -> /nix/store/lsdsmqd67jfpik27mqfxg95vpqgqczjf-libassuan-2.5.6
{censored} -> /nix/store/lvr1klwflhm2w6mcdgxpky7j8mdvzr4q-pixman-0.42.2
{censored} -> /nix/store/m0kqspc1xs4788k3yzci0x3a0w00px2y-libbytesize-2.10
{censored} -> /nix/store/m1q28bhlqx60csnx4iv212vqdy549lgd-qtsvg-5.15.12
{censored} -> /nix/store/mav0q76y52x65hhjdl02xpz84yr3dw8w-syncthing-1.26.1
{censored} -> /nix/store/mbwybs4qn40mdw11w6f4zcc3czpkmzgp-lm-sensors-3.6.0
{censored} -> /nix/store/mlxch6yqpfvskldsifzw1arxdf4zays8-qterminal-1.4.0
{censored} -> /nix/store/mmvkwlsa9mqi9qc8a0514g7picz1p4cx-boehm-gc-8.2.2
{censored} -> /nix/store/myw9c2dd3knxwi01gfkzm3ibv77zrbnz-libXrandr-1.5.4
{censored} -> /nix/store/n19hab1rcllppqkqiql8hv5arz9k8691-aws-c-compression-0.2.17
{censored} -> /nix/store/n1bg5nrghdaaq33gjny07wg2laxim3c0-cups-2.4.7-lib
{censored} -> /nix/store/n1ksqywmbnkblx05wq0rmsqfmls2sya8-libva-2.20.0
{censored} -> /nix/store/n32l4h91x7f4p31h4q7sn8y20phzl40i-libstartup-notification-0.12
{censored} -> /nix/store/n4bn6swasahjkqn95vhn6j9x3a959hq3-llvm-16.0.6-lib
{censored} -> /nix/store/n5z9578qb090blcyd33pbml1kgjlwp9c-aws-c-http-0.7.11
{censored} -> /nix/store/n7r5ijs295fhk6w81zbwirrk49q153nq-xscreensaver-6.08
{censored} -> /nix/store/n857d2201qpdy0qzdvi2nxxprzs8dfag-lxqt-session-1.4.0
{censored} -> /nix/store/nf2wf5mic1snpimx5zia8ggslapv99fn-libSM-1.2.4
{censored} -> /nix/store/ngjvd9fg433yqr6x9x3rwb2k7gp489s5-libusbmuxd-2.0.2+date=2023-04-30
{censored} -> /nix/store/niw73g4zqsqz5y4j5m7qzw2kz6j6pb9q-libxslt-1.1.38
{censored} -> /nix/store/nj83fxss8xh2v30mqj8j7kz7hj5md6ck-lowdown-1.0.2-lib
{censored} -> /nix/store/nnc1cja1qinw203bb40n66y4cja06kib-libXxf86vm-1.1.5
{censored} -> /nix/store/nxi6bisckp7ma9wnzwad9p7kx6w9zp6j-util-linux-2.39.2-lib
{censored} -> /nix/store/p1h862pbiilp4h1vkgxr4q1v2a042w44-libselinux-3.3
{censored} -> /nix/store/p1pzrj5ix136xjm1gkn1dxm2c6306lr4-aws-c-mqtt-0.8.14
{censored} -> /nix/store/p9ysh5rk109gyjj3cn6jr54znvvlahfl-glibc-2.38-66
{censored} -> /nix/store/pf13sr9c49ka84sgaml3j6qf436dpb95-libglvnd-1.7.0
{censored} -> /nix/store/piwqnsydhhs3ma6svd9q7vp1kqm63hh3-wpa_supplicant-2.10
{censored} -> /nix/store/pjllp09zdkz5km5wv4qqcacf052fkras-libnl-3.7.0
{censored} -> /nix/store/pmw3bng3q2bvnv486lvnaz5a177i3qc3-perl5.38.2-Try-Tiny-0.31
{censored} -> /nix/store/pr2k8c5b5x4camspyxv85h47jfmsgsjw-iptables-1.8.10
{censored} -> /nix/store/pr3vrpmskw6wxx75r5f5q6xs1qm7263i-perl-5.38.2
{censored} -> /nix/store/psmyvrl7r0r8kf3n5qxda31d0x5lwiz2-alsa-lib-1.2.9
{censored} -> /nix/store/pvv6rc2fchzyjjx7pydyxa1fp8nsz7az-perl5.38.2-LWP-Protocol-https-6.11
{censored} -> /nix/store/pw2qx38s740jbawrlyzlnkwzpxrnwd59-kidletime-5.113.0
{censored} -> /nix/store/pys64r0frcv23z0jvc4w75ql0pg7aipv-libsodium-1.0.18
{censored} -> /nix/store/q28l6a9r13ps9imxiqnzfir9qr903lms-libinput-1.24.0
{censored} -> /nix/store/q3bplzz552ws4ibbch2i2x0h4vc4556c-libarchive-3.7.2-lib
{censored} -> /nix/store/q5ah72n4sz5fadsr883waga7bw94xvxd-sqlite-3.43.2
{censored} -> /nix/store/q5c5il738b9y63w2y05jprbpjz3hr47l-perl5.38.2-Clone-0.46
{censored} -> /nix/store/q86mp8b0mag69r3ja9k4lv48kyzghrqw-galculator-2.1.4
{censored} -> /nix/store/qbmcab46kc4f1hhybh9g1i9x12ns1ps4-pango-1.51.0
{censored} -> /nix/store/qcm0pld5v9k37w1cq8ri819w9ksv0wgz-fribidi-1.0.13
{censored} -> /nix/store/qddh95vjifqqlvby19maszcapnm3jkhk-bash-interactive-5.2-p15
{censored} -> /nix/store/ql9ifyd78s22hkahmffm8gw6a3ac56bm-libtasn1-4.19.0
{censored} -> /nix/store/qvr4a339mw8bg6i2wckdp7fp8zx82301-systemd-254.10
{censored} -> /nix/store/qvvbqshaq2r08hz0gf9apcli4040gqqf-libseccomp-2.5.5-lib
{censored} -> /nix/store/qxj2c2ncn7wwfmc9c53fa5p8vbf3c0yd-lcms2-2.15
{censored} -> /nix/store/r2gnpyqnlar3gmaap2pw7359wpn36wk2-liberation-fonts-2.1.5
{censored} -> /nix/store/r46aibnxb5151ijrywmmqk0m9hmpw0v8-file-5.45
{censored} -> /nix/store/r73vd0anxg8qhwv967hz4z404crv03hl-dconf-0.40.0-lib
{censored} -> /nix/store/rd5rvdzmza38x98yglp18walkh0i6m2b-readline-8.2p7
{censored} -> /nix/store/rkhn61ly3h3dpjvxn1b56dhnqkzxq8sy-perl5.38.2-HTTP-Date-6.06
{censored} -> /nix/store/rmlm89jlk6iipiv7c00pxyncf5jdwsn6-xcb-util-image-0.4.1
{censored} -> /nix/store/rmpgdcc2nk4rpqg0hz4n3myv92vjnmqb-libqtxdg-3.12.0
{censored} -> /nix/store/rna8cxbinp0ndyg3vp75b5zmsq4mhd2v-libxkbcommon-1.5.0
{censored} -> /nix/store/rrjjbmic1mz53rgwmicz0vbm61yvxb2y-gcc-12.3.0-libgcc
{censored} -> /nix/store/rwmj4gdmk72x9sbqw2rjkad6s72bi6qf-lz4-1.9.4
{censored} -> /nix/store/rxsrfm62iv5c1xhkjinld2rbc6j1lxrx-nspr-4.35
{censored} -> /nix/store/rz4rpscnh6g0az85m7ilc56df1ii69gd-audit-3.1.2
{censored} -> /nix/store/s85wfslrb6i3xqypcicbqh7606svks1s-python3.11-pygobject-3.46.0
{censored} -> /nix/store/s9ydq06hrlnx6b0z6913ansix7rbyxcd-perl5.38.2-IO-Socket-SSL-2.083
{censored} -> /nix/store/sqn6b44h3ijb06mpy1w107v56lvipjnr-perl5.38.2-HTTP-CookieJar-0.014
{censored} -> /nix/store/srfkwz1rh6rzgbbdzya04n9psnlk7qyz-jansson-2.14
{censored} -> /nix/store/v1yaxfllvg9ljk5vwhck3vabb3jixnyc-duktape-2.7.0
{censored} -> /nix/store/v3z4fwy3mhrpl0x0dw7s3sbpdzv6z0xk-libICE-1.1.1
{censored} -> /nix/store/v41cqbs7ysnk220kn3j80rm7wp7rhiam-aws-sdk-cpp-1.11.118
{censored} -> /nix/store/v78fv00gfvs0zwh7idywk3kwj2zy749k-lxqt-powermanagement-1.4.0
{censored} -> /nix/store/v9np23d8xbphmg89a6chssnk7hnqrcl6-libXext-1.3.5
{censored} -> /nix/store/vb3zvymi8jvjh014i6jf1c2hqgafs84y-xz-5.4.4
{censored} -> /nix/store/vbap9vbg77ss1y9f9jqsm5nsychsda17-openssh-9.6p1
{censored} -> /nix/store/vcj8mymr10g403avx51vi8r4ry1ns1hx-elfutils-0.190
{censored} -> /nix/store/vfz2zhhsnz0vsy79gyy64jqbg5g7f735-jasper-4.1.2
{censored} -> /nix/store/vgyi91qjhkwca1rk3p0hyjn58kn0pdbr-nghttp2-1.57.0-lib
{censored} -> /nix/store/vhl1ksfdjjm1w05x34w45y06lvw35zvk-e2fsprogs-1.47.0
{censored} -> /nix/store/vhziq8h5qhw521ld9jmgi26mb8pcxzzy-at-spi2-core-2.50.2
{censored} -> /nix/store/w0bm9f62smf1z1sbnnxnjj0jgx80q7yc-libffi-3.4.4
{censored} -> /nix/store/w1wl7c98xfa9bn0vajziczl7czzz2jxa-lvm2-2.03.22-lib
{censored} -> /nix/store/w40bvr658vfww6256qlsp8ilhr08f9y8-nss-3.90.2
{censored} -> /nix/store/w5akh7j25b9m2sm0v14cvj0gh93paal1-solid-5.113.0
{censored} -> /nix/store/w69q832hyxlriwa9vvcj076443yvpfwm-gnused-4.9
{censored} -> /nix/store/wbq1pwwbdyi8ccl2hw4ll5prw1j2rpgi-libproxy-0.4.18
{censored} -> /nix/store/wizzqif1z4yw62xxr9s46zjcrhh5d1zf-libnvme-1.6
{censored} -> /nix/store/wjy8m429yqj2gn5zn0lirzc7cml678rg-libargon2-20190702
{censored} -> /nix/store/wk89b02zadlbk2fcag2sm7vmb3pp0gk8-nettle-3.9.1
{censored} -> /nix/store/wnab3y8pz4l1wfaga9ka0hlk6jwmw4w6-libopus-1.4
{censored} -> /nix/store/wrgj1skpwcsx83n46jn4ijaxm43l1j7y-dbus-1.14.10-lib
{censored} -> /nix/store/x25dyzmys0bvjj3k8nvspp4ly1k9nkv2-freetype-2.13.2
{censored} -> /nix/store/x2fwddhv7rslykcaia0shkfrpm5573by-libyaml-0.2.5
{censored} -> /nix/store/x7lgnc6lxlqk4pnbiyjydrasnq2lbrk2-qtbase-5.15.12-bin
{censored} -> /nix/store/xa0vspj6qblj93amm5dgibqcx39hnbrz-perl5.38.2-IO-HTML-1.004
{censored} -> /nix/store/xjppmqh3yv90b7piwx5gwrsmnn8hia1p-perl5.38.2-Encode-Locale-1.05
{censored} -> /nix/store/xk1a2qkk3gy89fk5zq8hjrhxr7fwnk6k-perl5.38.2-libwww-perl-6.72
{censored} -> /nix/store/xk3v8ffjnq8fq1yimycszf3yz28w2vli-xcb-util-keysyms-0.4.1
{censored} -> /nix/store/xr95praxily9m316dlzy406w5hv4mhqr-libgpg-error-1.47
{censored} -> /nix/store/xs7d19y7jlhdiw3ba1r7b4mm5fmphs9i-polkit-qt-1-0.114.0
{censored} -> /nix/store/xwl5rw38d5jf0qwgwiwz3whdb35ijcx2-gnugrep-3.11
{censored} -> /nix/store/xyzqk3qdshdkpcdwmr1rxsrv2x7r39sm-libayatana-appindicator-0.5.92
{censored} -> /nix/store/y0v7086iqc3gwir0vf67jwy31aqk3zpx-python3-3.11.8
{censored} -> /nix/store/y7dx8qay6q6pq16bwdr3hpyhvscgyxyx-aws-crt-cpp-0.20.3
{censored} -> /nix/store/yh21wszv0aalrr7qd5gkkh0vlw4p87y9-qlipper-5.1.2
{censored} -> /nix/store/yh6j1hq1rpd2a0qahrb307665slwzr5x-numactl-2.0.16
{censored} -> /nix/store/yl89kb0hf0bqnkflwpfgcf024j79is3i-xcb-util-0.4.1
{censored} -> /nix/store/ynmrawqvj0ssp2kv954anczw6gb1bbdl-harfbuzz-7.3.0
{censored} -> /nix/store/ypxhmp07j7myxyq5c0k0az8r1ym9w72z-libnma-1.10.6
{censored} -> /nix/store/yvnivp86gpnndxaw09irar0qw6z2ddmp-linux-pam-1.5.2
{censored} -> /nix/store/yydk4vmbhw4vmwzx5zkqdz8v18fi4c6g-qtquickcontrols-5.15.12
{censored} -> /nix/store/yywqmzp0xr07x79a5fl4yg7jqgwby2xz-libwebp-1.3.2
{censored} -> /nix/store/z1clfs14ch4l1qm3imbap5qj3wziz3g0-hwdb.bin
{censored} -> /nix/store/z26zi98qsxdj0ri594sifb6v020hvffk-libXau-1.0.11
{censored} -> /nix/store/z41b0rhipzlcmhj2g1d7z5va3iil07lr-libXinerama-1.1.5
{censored} -> /nix/store/z4lzks1ha1z5jiwfaq35x2nhpd9dl2i9-gconf-3.2.6
{censored} -> /nix/store/z5h08vgky94q7dbjm818wzkw7whf43ra-kwindowsystem-5.113.0
{censored} -> /nix/store/z5jy4hgkwliwif0prn24fal5jwwvbyw7-xcb-util-renderutil-0.3.10
{censored} -> /nix/store/z6223pf556f3cdgpfdi1d7ksbm9n8w70-fontconfig-2.14.2-lib
{censored} -> /nix/store/z9rrdqada2lgc1yzswzwvpjyrgqkaxs4-unifont-15.1.04
{censored} -> /nix/store/za3yqwq55qlag7qkp50k9sc3mx7bqm6x-librsvg-2.57.0
{censored} -> /nix/store/za46jbsgnfhnwczwfcdm8qzyvawnligw-gobject-introspection-1.78.1
{censored} -> /nix/store/zi7a0xdriszkl7bcrkajkbll5m066w80-aws-c-io-0.13.29
{censored} -> /nix/store/zj9qrxapkgvyfsqfj33w3m1yrj7s6l8m-perl5.38.2-HTTP-Message-6.45
{censored} -> /nix/store/zkjav1lds2bccg1bh5znn6g1hpp9n4sn-polkit-123
{censored} -> /nix/store/zkjcrrcm0zy8g30a6ix2kf170zfbabv1-libpng-1.6.40
{censored} -> /nix/store/znz0yrnzmfz6can2kng3anp5gkjrwf0y-ncurses-6.4
{censored} -> /nix/store/zwlk75bdp48cz5zjvs935z574gzm69fn-qtermwidget-1.4.0
{censored} -> /nix/store/zyrgydss48fvvx4qs0x54jgcvfyljmzd-libXdamage-1.1.6
oh. didn’t think to do it as root but it makes sense. 36 gigabytes freed up. thank you very much!
1 Like