this post was submitted on 30 Nov 2025
58 points (98.3% liked)

Linux

10441 readers
391 users here now

A community for everything relating to the GNU/Linux operating system (except the memes!)

Also, check out:

Original icon base courtesy of lewing@isc.tamu.edu and The GIMP

founded 2 years ago
MODERATORS
 

Six months after the previous 25.05 “Warbler” release, the new stable version, NixOS 25.05 “Xantusia,” is officially here. Targeted at advanced users and developers, NixOS bets on an immutable design and an atomic update model, emphasizing reproducibility and reliability with the Nix package manager.

Nixpkgs adds 7,002 new packages and updates 25,252 existing entries. A cleanup effort removed 6,338 outdated packages to keep the repository manageable and secure. On the NixOS side, the release introduces 107 new modules, adds 1,778 configuration options, and removes older, unused components.

The desktop stack is updated to GNOME 49. This version ends X11 session availability, includes a new video player and document viewer, and ships a redesigned calendar application. Other applications across the GNOME suite receive updates as part of the regular upstream cycle.

you are viewing a single comment's thread
view the rest of the comments
[–] djsaskdja@reddthat.com 2 points 6 days ago (6 children)

I tried installing it for fun and my /home/$user folder is empty. Is that normal? Like there’s no Desktop, Downloads, Documents, etc folders by default. I picked the GNOME desktop environment at install. Never seen that before.

[–] onlinepersona@programming.dev 3 points 6 days ago (3 children)

Probably not. There must be something missing in your configuration. Do you have createHome = true for your user?

When facing issues on nixos, you can easily just share your /etc/nixos/configuration.nix + a description of your error + logs and it'll provide useful context for people. We'll even be able to spin up a VM with your config to see if the bug can be recreated.

[–] djsaskdja@reddthat.com 1 points 5 days ago (2 children)

I have a home folder. It's just empty. To answer your question though, no createHome = true is not in my configuration.nix file. I could dump all that, but this is a fresh system. It's clearly an issue with the NixOS installer. I tried it on completely different hardware just now and have the same problem. I solved it by running this series of commands.

xdg-user-dirs-update
gio set ~/Desktop metadata::custom-icon-name user-desktop
gio set ~/Documents metadata::custom-icon-name folder-documents
gio set ~/Downloads metadata::custom-icon-name folder-download
gio set ~/Music metadata::custom-icon-name folder-music
gio set ~/Pictures metadata::custom-icon-name folder-pictures
gio set ~/Videos metadata::custom-icon-name folder-videos
gio set ~/Templates metadata::custom-icon-name folder-templates
gio set ~/Public metadata::custom-icon-name folder-publicshare
xdg-user-dirs-gtk-update

I guess it's fine, but not ideal. I could see that confusing the shit out of a more casual user.

[–] onlinepersona@programming.dev 1 points 5 days ago (1 children)

When you say "nixos installer", do you mean the GUI nixos installer? If you have a github account, you can create a bug report. As a KDE user, this has never been a problem for me.

[–] djsaskdja@reddthat.com 2 points 5 days ago

Yep, this one: https://channels.nixos.org/nixos-25.11/latest-nixos-graphical-x86_64-linux.iso. I don't have a GitHub account, but someone else said it's normal. So who knows!

load more comments (2 replies)