#Nix

Pierre Gambarotto's avatar
Pierre Gambarotto

@zuludjin@piaille.fr · Reply to Raito Bezarius's post

@raito
> we also are working on managing on-the-shelf switches using... expressions and colmena

Sounds very interesting ! What is your current targeted hardware ?

ruby's avatar
ruby

@srxl@fedi.foxgirl.engineering

new blogpost: fun with nixos machines in the cloud

https://foxgirl.engineering/blog/core-services-part-1

ruby's avatar
ruby

@srxl@fedi.foxgirl.engineering

new blogpost: fun with nixos machines in the cloud

https://foxgirl.engineering/blog/core-services-part-1

Martin's avatar
Martin

@martin@wimpysworld.social

If you'd like 130GB /nix volume in a standard free-tier GitHub runner ️❄️ then you want the Nothing but Nix GitHub action 🐙

  • Brutally purges unnecessary software from GitHub Actions runners 😈
  • Creates a /nix volume by merging free space from multiple partitions into one optimised file system ️🗄️
  • Build complete #NixOS configurations with the GitHub free-tier 💪

GitHub Actions runners come packed with pre-installed tools you'll likely never use in your #Nix workflow. The typical space available in a standard GitHub runner for /nix is 20GB. We deserve better 😁

Using the "Hatchet Protocol" 🪓 choose how brutal the purge will be, or opt to keep the hatchet sheathed to create an 85GB /nix volume in just 1 second ️⏱️

Learn more here 👇

  • Nothing but Nix - Removes all the cruft from a GitHub Actions runner to make the most space possible for Nix
Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: `programs.mergiraf` Adds git integration for mergiraf to automatically resolve merge conflicts.

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange

NixOS 25.05 "Warbler" is now released! 🎉

nixos.org/blog/announcements/2

github.com/ghostwriter's avatar
github.com/ghostwriter

@ghostwriter@phpc.social

Thank you for bringing into the ecosystem.

@Pol

Pol Dellaiera's avatar
Pol Dellaiera

@Pol@mathstodon.xyz

I just merged the PR adding Drupal "as a service" in NixOS. I guess this is going to be a life changer for many people!

github.com/NixOS/nixpkgs/pull/

Thanks to @abmurrow for your patience and dealing with me during the review, good job!

matthewcroughan's avatar
matthewcroughan

@matthewcroughan@social.defenestrate.it

nix.camp 2025 is on

27th August - 3rd of September @ https://birkenhack.org & https://astralship.org. An opportunity to hack on things before flying out to #nixcon!

Read more @ https://nix.camp

#nixcamp #nixos #nix #reproducibility
Stephen McNamara's avatar
Stephen McNamara

@noflcl@mastodon.social

Upgraded production server from 24.11 to 25.05 without a single issue🥲 its just so beautiful.

Base install started 23.05 making this the 4th major release upgrade without a single hiccup.

Thank you you have given me the confidence in my systems I have always wanted 🫶

matthewcroughan's avatar
matthewcroughan

@matthewcroughan@social.defenestrate.it

nix.camp 2025 is on

27th August - 3rd of September @ https://birkenhack.org & https://astralship.org. An opportunity to hack on things before flying out to #nixcon!

Read more @ https://nix.camp

#nixcamp #nixos #nix #reproducibility
matthewcroughan's avatar
matthewcroughan

@matthewcroughan@social.defenestrate.it

nix.camp 2025 is on

27th August - 3rd of September @ https://birkenhack.org & https://astralship.org. An opportunity to hack on things before flying out to #nixcon!

Read more @ https://nix.camp

#nixcamp #nixos #nix #reproducibility
Sandro :nixos: :verified_gay:'s avatar
Sandro :nixos: :verified_gay:

@sandro@c3d2.social

noise 😏

github.com/NixOS/nix/pull/1322

Pol Dellaiera's avatar
Pol Dellaiera

@Pol@mathstodon.xyz

I just merged the PR adding Drupal "as a service" in NixOS. I guess this is going to be a life changer for many people!

github.com/NixOS/nixpkgs/pull/

Thanks to @abmurrow for your patience and dealing with me during the review, good job!

Stephen McNamara's avatar
Stephen McNamara

@noflcl@mastodon.social

Upgraded production server from 24.11 to 25.05 without a single issue🥲 its just so beautiful.

Base install started 23.05 making this the 4th major release upgrade without a single hiccup.

Thank you you have given me the confidence in my systems I have always wanted 🫶

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange

Let's recap the last release period from the Go perspective. There have been quite important changes to the Go ecosystem in nixpkgs, let's start with the one that will affect most users and maintainers of Go package:

buildGoModule now supports a self-referencing finalAttrs: parameter containing the final arguments including overrides. This allows packaging configuration to be overridden in a consistent manner by providing an alternative to rec {} syntax. This pattern will fix many issues people previously had overridden Go packages as it is adopted in nixpkgs. If you are maintaining a Go package, please check if you already updated it to use finalAttrs. The Go section of the manual has been updated for this and all examples now use finalAttrs.

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange

Let's recap the last release period from the Go perspective. There have been quite important changes to the Go ecosystem in nixpkgs, let's start with the one that will affect most users and maintainers of Go package:

buildGoModule now supports a self-referencing finalAttrs: parameter containing the final arguments including overrides. This allows packaging configuration to be overridden in a consistent manner by providing an alternative to rec {} syntax. This pattern will fix many issues people previously had overridden Go packages as it is adopted in nixpkgs. If you are maintaining a Go package, please check if you already updated it to use finalAttrs. The Go section of the manual has been updated for this and all examples now use finalAttrs.

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange · Reply to Paul Meyer's post

And finally, buildGoPackage has been removed, it was deprecated since the last release. Details regarding migration can be found in the Go section in the nixpkgs manual.

Let me know if I missed anything important. :)

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange · Reply to Paul Meyer's post

A new builder buildGoLatestModule has been added to provide faster support to packages that require the latest Go version on minor release, such as gopls and co. While the minor bump of buildGoModule needs to go through staging, buildGoLatestModule is updated on master and will therefore reach users faster. The use within nixpkgs is restricted, please read the Go upgrade policy. Notice that this is only for faster minor version bumps at the moment, so direct use of buildGoLatestModule outside of nixpkgs doesn't give much benefit (especially, no faster access to security patches).

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange · Reply to Paul Meyer's post

A policy documenting the details of Go toolchain and builder upgrades in nixpkgs, as well as rules related to using non-default builders like buildGo1xxModule and buildGoLatestModule within nixpkgs has been added in-tree. This is manly to coordinate maintenance and to set expectations for consumers outside of nixpkgs.

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange · Reply to Paul Meyer's post

buildGoModule now passes environment variables via the env attribute. CGO_ENABLED should now be specified with env.CGO_ENABLED when passing to buildGoModule. Direct specification of CGO_ENABLED is now redirected by a compatibility layer with a warning, but will become an error in future releases.
Go-related environment variables previously shadowed by buildGoModule now results in errors when specified directly. Such variables include GOOS and GOARCH.
Third-party projects supporting both stable and unstable channels could detect this change through the absence of the CGO_ENABLED function argument in buildGoModule (!((lib.functionArgs buildGoModule) ? CGO_ENABLED)).

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange · Reply to Paul Meyer's post

Next, buildGoModule now supports a goSum attribute (null by default) to optionally provide a path to go.sum and correctly enabling rebuilds when the file changes. It ensures you aren't using an outdated fixed output derivation (FOD) hash for your Go module dependencies. Previously, on changes to src, updating vendorHash could be forgotten and nix wouldn't notice and continue using outdated module dependencies from the FOD.

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange · Reply to Paul Meyer's post

Overriding of the goModules attribute (the FOD with the Go module dependencies) is unsupported on buildGoModule. To still enable overriding, passthru.overrideModAttrs was added, allowing to pass a function used for overriding the modules derivation internally. It's documented in its own section in the nixpkgs manual.

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange

Let's recap the last release period from the Go perspective. There have been quite important changes to the Go ecosystem in nixpkgs, let's start with the one that will affect most users and maintainers of Go package:

buildGoModule now supports a self-referencing finalAttrs: parameter containing the final arguments including overrides. This allows packaging configuration to be overridden in a consistent manner by providing an alternative to rec {} syntax. This pattern will fix many issues people previously had overridden Go packages as it is adopted in nixpkgs. If you are maintaining a Go package, please check if you already updated it to use finalAttrs. The Go section of the manual has been updated for this and all examples now use finalAttrs.

Éric's avatar
Éric

@gileri@mastodon.xyz

The German/European Sovereign Tech fund has committed to invest 230k € to improve and related projects, in order to further the security and reliability of crucial software infrastructure :

discourse.nixos.org/t/transfor

Éric's avatar
Éric

@gileri@mastodon.xyz

The German/European Sovereign Tech fund has committed to invest 230k € to improve and related projects, in order to further the security and reliability of crucial software infrastructure :

discourse.nixos.org/t/transfor

matrss

@matrss@mastodon.social · Reply to Yann Büchau :nixos:'s post

@nobodyinperson with flakes your nix (the package manager cli tool) version is still "unpinned". If the flake depends on a recent change to the flake schema your nix might be too old for it. Probably not much of a practical issue, but after using for a while I am starting to prefer its approach: the guix revision you use pins _everything_, the guix CLI, all packages, all services, ... . `guix time-machine` "just" delegates everything to an entire other revisions' guix process.

Janneke's avatar
Janneke

@janneke@todon.nl

Now at in Katoen kamer, a workshop by @yvan on @nixos_org (who uses as a daily driver ;)

Picture of Yvan Sraka with thumbs up next to the opening slide with title "An introduction to Nix" and subtitle " Reproducible builds and deployments"
ALT text detailsPicture of Yvan Sraka with thumbs up next to the opening slide with title "An introduction to Nix" and subtitle " Reproducible builds and deployments"
Yann Büchau :nixos:'s avatar
Yann Büchau :nixos:

@nobodyinperson@fosstodon.org · Reply to Yann Büchau :nixos:'s post

(and I guess) is NOT a comprehensive tool to pin your environment! It is JUST a tool to help you manage some downstream Python packages, that's it. Use something more powerful like :nixos: flakes or ​s or whatever floats your boat to do proper pinning of an environment - where you can pin your package manager itself.

Janneke's avatar
Janneke

@janneke@todon.nl

Now at in Katoen kamer, a workshop by @yvan on @nixos_org (who uses as a daily driver ;)

Picture of Yvan Sraka with thumbs up next to the opening slide with title "An introduction to Nix" and subtitle " Reproducible builds and deployments"
ALT text detailsPicture of Yvan Sraka with thumbs up next to the opening slide with title "An introduction to Nix" and subtitle " Reproducible builds and deployments"
Ariel (L3 nightmare ed.)'s avatar
Ariel (L3 nightmare ed.)

@arichtman@eigenmagic.net

Find why your devShell, package, etc depends on something interactively!

`nix-tree --derivation ..x86_64-linux.default`

github.com/utdemir/nix-tree

Ariel (L3 nightmare ed.)'s avatar
Ariel (L3 nightmare ed.)

@arichtman@eigenmagic.net

Find why your devShell, package, etc depends on something interactively!

`nix-tree --derivation ..x86_64-linux.default`

github.com/utdemir/nix-tree

Pol Dellaiera's avatar
Pol Dellaiera

@Pol@mathstodon.xyz

Le Replay est disponible :-)

videos.univ-grenoble-alpes.fr/

Dans cette présentation, nous discuterons de reproductibilité dans le contexte d’environnements de développement modernes, en nous appuyant sur une expérience concrète au sein de la Commission Européenne. Je partagerai mon parcours, les leçons tirées de mon mémoire de master, et comment des outils comme Nix peuvent radicalement transformer les pratiques de développement, en rendant les environnements plus fiables, plus transparents et plus collaboratifs. Une presentation à la croisée de l’open source et de l’ingénierie logicielle.

Merci @reproductible_fr !

Sources disponibles @ recherche-reproductible.fr/pas

hexa-'s avatar
hexa-

@hexa@chaos.social

just merged an experimental integer coercion feature.

That's useful if you want to interpolate an integer into a string. In you previously needed to explicitly call `toString` to achieve that cast.

And checking my personal configuration it looks like I can drop all `toString` usage in my configuration with this.

git.lix.systems/lix-project/li

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.hwatch'.

flashfox's avatar
flashfox

@flashfox@infosec.exchange · Reply to Sandro :nixos: :verified_gay:'s post

@sandro You could stop pretending that you are not part of the problem, for example by being actually helpful of github instead of dog piling onto new contributor until they burn out in two weeks in the name of whatever you and your club deems acceptable while reserving the right for yourself of pushing breaking changes five minutes before release because you just can't be bothered to care about the consequences.

Das kannste machen.

... but we both know you won't

Sandro :nixos: :verified_gay:'s avatar
Sandro :nixos: :verified_gay:

@sandro@c3d2.social

I am not easy to get hyped up about things, even in projects I am already hyped up about. One of the projects I am very hyped up about is ca-derivations in . I use them in my leaf NixOS modules for years now and they are a key component to reduce rebuilds across nixos-rebuild switch to a near minimum. Without my changes a seemingly no-op update to my nixpkgs flake input triggers 20+ builds which don't change anything.

hexa-'s avatar
hexa-

@hexa@chaos.social

just merged an experimental integer coercion feature.

That's useful if you want to interpolate an integer into a string. In you previously needed to explicitly call `toString` to achieve that cast.

And checking my personal configuration it looks like I can drop all `toString` usage in my configuration with this.

git.lix.systems/lix-project/li

hexa-'s avatar
hexa-

@hexa@chaos.social

just merged an experimental integer coercion feature.

That's useful if you want to interpolate an integer into a string. In you previously needed to explicitly call `toString` to achieve that cast.

And checking my personal configuration it looks like I can drop all `toString` usage in my configuration with this.

git.lix.systems/lix-project/li

hexa-'s avatar
hexa-

@hexa@chaos.social

just merged an experimental integer coercion feature.

That's useful if you want to interpolate an integer into a string. In you previously needed to explicitly call `toString` to achieve that cast.

And checking my personal configuration it looks like I can drop all `toString` usage in my configuration with this.

git.lix.systems/lix-project/li

hexa-'s avatar
hexa-

@hexa@chaos.social

just merged an experimental integer coercion feature.

That's useful if you want to interpolate an integer into a string. In you previously needed to explicitly call `toString` to achieve that cast.

And checking my personal configuration it looks like I can drop all `toString` usage in my configuration with this.

git.lix.systems/lix-project/li

ck

@ck@chaos.social · Reply to Pierre Bourdon's post

@delroth definitely a very subtle, yet detrimental way of breaking compatibility with cpp .

Neo's avatar
Neo

@neo@social.hacktheplanet.be · Reply to Raito Bezarius's post

@raito @rriemann @Linux @eu_os this PR is great, it covers what I meant. “Nix as LEGO for building your own Linux based OS”. I like that analogy. It’s a good one. I must repeat that I am not advocating as a base OS for EU OS proof of concept. I suggest looking into using to build and maintain a lean base.

Raito Bezarius's avatar
Raito Bezarius

@raito@nixos.paris · Reply to Robert Riemann 🇪🇺's post

@rriemann @neo @Linux @eu_os isn't this disingenuous? you are comparing migrations to Linux and you are asking to an explicit migration to NixOS? it's not like your bootc thing was tried in public sectors?

either way, what Neo proposed was to use Nix and this was successfully used at the European Commission, Target, Shopify, Mercury and many more companies who document their usage of

even Google is using these days, so…

Neo's avatar
Neo

@neo@social.hacktheplanet.be · Reply to Linux Is Best's post

@Linux @rriemann @eu_os I agree with the point raised about and have suggested looking into this a few times wrt EU OS. Using as build tool really is a very unique approach to building a Linux based OS and completely cuts out the notion of a “distribution”. It takes a more direct path from the upstream source code (kernel, systemd, …) to a working OS. Thus entirely sidestepping the raised concerns about another distro used as a base.

maralorn's avatar
maralorn

@maralorn@chaos.social

I will be teaching the track at 🇨🇭 ⛰️

zfoh.ch/zurihac2025/

Looking forward to showing you all the best(TM) way to setup packages with Nix 😎 Maybe we can even upstream some Haskell packages to ? 😆

I jumped in a bit on short notice and am still collecting ideas. So let me know what you would like to learn!

maralorn's avatar
maralorn

@maralorn@chaos.social

I will be teaching the track at 🇨🇭 ⛰️

zfoh.ch/zurihac2025/

Looking forward to showing you all the best(TM) way to setup packages with Nix 😎 Maybe we can even upstream some Haskell packages to ? 😆

I jumped in a bit on short notice and am still collecting ideas. So let me know what you would like to learn!

maralorn's avatar
maralorn

@maralorn@chaos.social

Why are there 13 competing standards for pre commit hooks?

There is pre-commit.com/ which is great and has dozens of hooks, so great that there is github.com/cachix/git-hooks.ni which nixifies it and has to declare all hooks again. Okay, now its nixified, that’s better I guess. Oh, what’s that hook? treefmt.com/ how useful you can collect different formatters together. Oh, wait, there is github.com/numtide/treefmt-nix which nixifies that again, declare dozens of formatters in again …

github.com/ghostwriter's avatar
github.com/ghostwriter

@ghostwriter@phpc.social

Thank you for bringing into the ecosystem.

@Pol

Chris McDonough ✅'s avatar
Chris McDonough ✅

@chrism@chattingdarkly.org

NixOS 102: NixOS on a Digital Ocean Droplet

All hail nixos-generators!

youtube.com/watch?v=L1E8yBqDGF

nebucatnetzer's avatar
nebucatnetzer

@nebucatnetzer@social.linux.pizza

Ticket sales for are open! 🎉 🎆

discourse.nixos.org/t/ticket-s

nebucatnetzer's avatar
nebucatnetzer

@nebucatnetzer@social.linux.pizza

Ticket sales for are open! 🎉 🎆

discourse.nixos.org/t/ticket-s

nebucatnetzer's avatar
nebucatnetzer

@nebucatnetzer@social.linux.pizza

Ticket sales for are open! 🎉 🎆

discourse.nixos.org/t/ticket-s

Chris McDonough ✅'s avatar
Chris McDonough ✅

@chrism@chattingdarkly.org

NixOS 102: NixOS on a Digital Ocean Droplet

All hail nixos-generators!

youtube.com/watch?v=L1E8yBqDGF

Chris McDonough ✅'s avatar
Chris McDonough ✅

@chrism@chattingdarkly.org

I was encouraged by the new "--flake" option that got slipped in to an update to nixos-generate-config. Maybe 30 releases from now I'll be able to make videos which don't apologize for using them.

Chris McDonough ✅'s avatar
Chris McDonough ✅

@chrism@chattingdarkly.org

I was encouraged by the new "--flake" option that got slipped in to an update to nixos-generate-config. Maybe 30 releases from now I'll be able to make videos which don't apologize for using them.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: `services.wayvnc` wayvnc is a VNC server for wlroots based Wayland compositors.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new sketchybar module has been added. - Simple configuration with a single `config` option that accepts the configuration as lines, a file, or a directory. - Support for both bash and lua configuration types - `extraLuaPackages` option for additional Lua dependencies - `extraPackages` option for additional runtime dependencies - Integrated launchd service management

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.waveterm'. WaveTerm is a modern, GPU-accelerated terminal emulator that combines the power of a traditional terminal with a smart workspace. It provides features like automatic command history with contextual search, workspace organization, multiple terminals in a single window, and integrated AI assistance.

Linux Is Best's avatar
Linux Is Best

@Linux@mk.absturztau.be

❄️ NixOS 25.05 has been released.

https://nixos.org/blog/announcements/2025/nixos-2505/

Linux Is Best's avatar
Linux Is Best

@Linux@mk.absturztau.be

❄️ NixOS 25.05 has been released.

https://nixos.org/blog/announcements/2025/nixos-2505/

sokai 🇺🇦 🕎's avatar
sokai 🇺🇦 🕎

@sokai@openbiblio.social · Reply to Paul Meyer's post

🎊 And NixOS mailserver, too! 🦾 nixos-mailserver.readthedocs.i

sokai 🇺🇦 🕎's avatar
sokai 🇺🇦 🕎

@sokai@openbiblio.social · Reply to Paul Meyer's post

🎊 And NixOS mailserver, too! 🦾 nixos-mailserver.readthedocs.i

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange

NixOS 25.05 "Warbler" is now released! 🎉

nixos.org/blog/announcements/2

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange

NixOS 25.05 "Warbler" is now released! 🎉

nixos.org/blog/announcements/2

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.lutris'. Lutris is an open-source gaming platform for Linux. It simplifies the installation and management of games from various sources, including Steam, GOG, Epic Games Store, Ubisoft Connect, and more. The module allows you to configure Lutris settings including runner options, system preferences, and interface customization.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.sway-easyfocus'. sway-easyfocus is a tool that provides window switching capabilities for the Sway window manager. It works similarly to i3-easyfocus, displaying labels on visible windows to allow quick selection and focus without moving your hand to the mouse or using directional keys.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.i3bar-river'. i3bar-river is a status bar specifically designed for the River Wayland compositor, using the same protocol as i3bar. It allows you to display system information and status updates in a customizable bar, and works well with tools that output i3bar-compatible JSON like i3status.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.onagre'. Onagre is a simple but flexible application launcher for X11 and Wayland. Written in Rust, it features fuzzy search, customizable themes, configurable keybindings, and supports executing custom commands. Its design philosophy focuses on simplicity and efficiency while remaining highly configurable.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'services.clipcat'. Clipcat is a clipboard manager for Wayland and X11 with a daemon/client architecture. It offers a secure way to store and manage clipboard history with features like content filtering, custom maximum item count, and history persistence. The module provides options to configure the daemon, enable clipboard syncing, and set up the included GTK client.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.visidata'. VisiData is a terminal spreadsheet multitool for exploring and arranging data. It allows you to quickly open, explore, summarize, and analyze datasets in various formats including CSV, Excel, SQL, HTML, JSON, and many more. The module lets you configure VisiData's behavior through options and custom key bindings.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.mpvpaper'. mpvpaper is a utility that allows you to use videos or complex animations as your desktop wallpaper using mpv. It supports various video formats and provides configuration options like framerate limits and scaling methods. The module allows you to specify target outputs, video options, and additional mpv arguments.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.kickoff'. Kickoff is a minimalist application launcher for Wayland designed to be fast and lightweight. It features a clean interface that appears at the center of the screen, fuzzy search functionality, and customizable appearance through theming. The module allows configuration of hotkeys, theme settings, and launch options.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.rmpc'. RMPC (Remote MPD Client) is a minimalist TUI client for the Music Player Daemon. It provides a simple interface to control MPD with features like playlist manipulation, library browsing, and song searching. The module allows you to customize its behavior, keybindings, and connection settings.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.onedrive'. OneDrive is Microsoft's cloud storage service. This module integrates the open source OneDrive client for Linux which provides synchronization capabilities between your local file system and OneDrive. The module allows configuring multiple OneDrive accounts, sync options, and notification preferences.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.nix-init'. nix-init generate Nix packages from URLs.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: `programs.sesh` Sesh is a CLI that helps you create and manage tmux sessions quickly and easily using zoxide.

Chris McDonough ✅'s avatar
Chris McDonough ✅

@chrism@chattingdarkly.org

NixOS 101: Using nix-serve as a Local Binary Cache

Our own @arichtman is mentioned at the end.

youtu.be/-Ck0c9bpzjw

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: `services.mpdscribble` Adds a module for mpdscribble, a music player daemon scrobbler.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: `programs.ripgrep-all` Adds a module for ripgrep-all, a tool for searching text in files.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: `programs.mergiraf` Adds git integration for mergiraf to automatically resolve merge conflicts.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: `programs.mergiraf` Adds git integration for mergiraf to automatically resolve merge conflicts.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'services.jankyborders'. JankyBorders adds customizable borders to macOS application windows. It provides features like adjustable border width, color, radius, and window title display. This module is particularly useful for improving window visibility when using a tiling window manager on macOS.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'services.skhd'. Simple Hotkey Daemon (skhd) is a simple macOS hotkey daemon that allows defining system-wide keyboard shortcuts for launching applications and shell commands. The module enables configuration of key combinations, modifiers, and associated actions, and integrates well with window managers like yabai.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.distrobox'. Distrobox is a tool that uses podman or docker to create containers using the Linux distribution of your choice. It allows you to use the package manager of other distributions to install applications that aren't available in NixOS, and integrates those applications with your host system. The module enables configuration of container definitions and distrobox settings.

Chris McDonough ✅'s avatar
Chris McDonough ✅

@chrism@chattingdarkly.org

NixOS 101: Using nix-serve as a Local Binary Cache

Our own @arichtman is mentioned at the end.

youtu.be/-Ck0c9bpzjw

Damian Poddebniak @ FOSDEM's avatar
Damian Poddebniak @ FOSDEM

@duesee@norden.social

I... uhm... is it normal that you kind of want to use for everything only after a few learning sessions? I barely finished a few simple things but am already convinced Nix can solve all my computer issues.

Good dev containers? Nix. Reproducible deployment of machines? Nix. Full product life-cycle management? Nix. Container platform? Nix. IaC? Nix. Ansible? Nix. Terraform? Nix.

Help...

Chris McDonough ✅'s avatar
Chris McDonough ✅

@chrism@chattingdarkly.org

NixOS 100: Defining and Using Custom NixOS Options

youtube.com/watch?v=Z5vyoBqYfu

Chris McDonough ✅'s avatar
Chris McDonough ✅

@chrism@chattingdarkly.org

NixOS 100: Defining and Using Custom NixOS Options

youtube.com/watch?v=Z5vyoBqYfu

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange

For many, overlays, and fixed-point functions as underlying concept, are hard to gasp in .

I found the documentation to be actually quite good in this case, checkout the function docs of fix and extends (and read in this order). Both have great examples/steps that guide you through, which was really helpful to me.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: `programs.pgcli` pgcli is a Python CLI that lets you connect to Postgres databases and run queries with syntax highlighting and auto-completion.

Martin's avatar
Martin

@martin@wimpysworld.social

If you'd like 130GB /nix volume in a standard free-tier GitHub runner ️❄️ then you want the Nothing but Nix GitHub action 🐙

  • Brutally purges unnecessary software from GitHub Actions runners 😈
  • Creates a /nix volume by merging free space from multiple partitions into one optimised file system ️🗄️
  • Build complete #NixOS configurations with the GitHub free-tier 💪

GitHub Actions runners come packed with pre-installed tools you'll likely never use in your #Nix workflow. The typical space available in a standard GitHub runner for /nix is 20GB. We deserve better 😁

Using the "Hatchet Protocol" 🪓 choose how brutal the purge will be, or opt to keep the hatchet sheathed to create an 85GB /nix volume in just 1 second ️⏱️

Learn more here 👇

  • Nothing but Nix - Removes all the cruft from a GitHub Actions runner to make the most space possible for Nix
Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: `programs.foliate` Foliate is a modern e-book reader tailored for GNOME.

Yann Büchau :nixos:'s avatar
Yann Büchau :nixos:

@nobodyinperson@fosstodon.org

Has *anyone ever* gotten :nixos: to automatically fetch things from another of your machines instead of cache.nixos.org and/or rebuilding everything _again_ locally?

The manual¹ claims one can use --substituers ssh://yourmachine, but (of course) that doesn't work. Terrible or no error messages, that weird 'SSH stdout first line:' message, different port only settable via NIX_SSHOPTS='-p 1234', hangs indefinitely at `querying info about missing paths`...

😩

¹nix.dev/manual/nix/2.24/packag

Julia Mono (she/they) :neodog_flag_trans:'s avatar
Julia Mono (she/they) :neodog_flag_trans:

@julia@fedi.monobo.xyz

I am pretty new to - but while I wait for my first PR (https://github.com/NixOS/nixpkgs/pull/400046) to be reviewed, I want to use the package already.

currently I add
-I nixpkgs=... to my rebuilds but it feels wrong. Especially since seems to be made for flexible things like this.

Where would I start finding this out? Is it advisible to get familiar with nix lang first and THEN try stuff like this or are there good resources for 'learn as you go' - which usually works better for me.

Jake Hamilton's avatar
Jake Hamilton

@jakehamilton@hachyderm.io

Are you using Flakes? Can you let me know what version your lock file is by running this command?

```
cat ./flake.lock | grep -o '"version": [0-9]'
```

OptionVoters
<= 30 (0%)
40 (0%)
>= 540 (78%)
View Results11 (22%)
paepcke  :nix: + :freebsd:'s avatar
paepcke :nix: + :freebsd:

@paepcke@infosec.exchange

nixcademy.com/posts/secure-sup

Beady Belle Fanchannel's avatar
Beady Belle Fanchannel

@Profpatsch@mastodon.xyz · Reply to Jake Hamilton's post

@jakehamilton not the article we need, but the article we deserve

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.halloy'. Halloy is a modern IRC client supporting IRCv3 features, with a clean and intuitive user interface. It provides features like SASL authentication, message highlights, nick colors, emoji support, URL previews, and more.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.numbat'.

Jake Hamilton's avatar
Jake Hamilton

@jakehamilton@hachyderm.io

Flakes Have Failed

kilo.bytesize.xyz/flakes-have-

Jake Hamilton's avatar
Jake Hamilton

@jakehamilton@hachyderm.io

Flakes Have Failed

kilo.bytesize.xyz/flakes-have-

pinage404.rss's avatar
pinage404.rss

@pinage404@mamot.fr

As of today, my computer can __nicely__ read aloud for me !

I'm lazy, i read slowly, so i don't like reading, i skip a lot of articles

I have been looking for a solution for several months

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.wayprompt'. Wayprompt is a password prompter for Wayland, including a drop-in replacement for GnuPG’s pinentry ('pinentry-wayprompt'). Note that the Wayland compositor must support the Layer Shell protocol.

niko's avatar
niko

@nrab@hachyderm.io

Polish below / Polski poniżej, boosts appreciated!

I’m very glad to announce we have an official date for the next Nix User Group Poland Meetup! If you happen to be around Gdańsk, Warsaw, or Poznan on the 23rd of May, please come to either HS3, HSWaw, or HSPoz and join us for some great talks, great people, and great Nix. We’ll be starting at 17.00.
We coordinated between the three hackerspaces to connect them through streams, so any talk in any place will be appreciated from all 3.
We’re still open for more talks, so be sure to use the submission form or contact me directly if you want to share anything nix-related with our community.

More info at our channels:
Discord: discord.gg/eJnKKjQ3Bc
Matrix: -poland:matrix.org

We hope to see you there!

=======

Z przyjemnością ogłaszam, że mamy datę następnego meetup-u Nix User Group Polska! Jeśli będziesz w okolicy Gdańska, Warszawy, czy Poznania 23 maja serdecznie zapraszamy do jednego z HS3, HSWaw, i HSPoz na świetne prelekcje, do świetnych ludzi, i na świetne Nixowanie.
Zaczynamy o 17.00.
Meetup będzie odbywać się równocześnie we wszystkich 3 hackerspejsach, które będą połączone streamami, więc każda prelekcja z każdej lokalizacji, będzie oglądana w każdej innej.
Wciąż jesteśmy otwarci na więcej prezentacji, więc jeśli masz coś około-Nixowego do podzielenia się z community, zapraszamy do wypełnienia formularza, albo skontaktowania się ze mną.

Więcej info na naszych kanałach:
Discord: discord.gg/eJnKKjQ3Bc
Matrix: -poland:matrix.org

Do zobaczenia!

Grimmauld's avatar
Grimmauld

@grimmauld@mastodon.grimmauld.de

Yay! My recent apparmor update PR to [1] has now hit the nixos-unstable repository! This means 4.1.0 is available, with various improvements.

With that PR, i completely rewrote the packaging. It now supports pkgsMusl, pkgsCross and pkgsLLVM. It has the build checks flipped on, and packaging is massively simplified.

Making all this work wasn't trivial, and some oversights were made. Those have been corrected in follow-ups, though the functionality should be available already. Do report issues with this update!

Sadly, 4.1.0 does not yet bring the needed optimizations to the alias system that are necessary to efficiently confine all of the nix store effectively. That part is still a WIP.

I also have to say: I am impressed with apparmor upstream. While doing this update, i noticed the parser check suite failing when compiling against Musl libc. Apparmor is maintained by cannonical devs, ubuntu does not use musl. Yet they were willing to listen, debug and fix these issues. While not everything has been fixed yet (this is an ongoing effort), it is nice to see upstream developers wanting to support the "weird" platforms like musl nixos.

[1] github.com/NixOS/nixpkgs/pull/

niko's avatar
niko

@nrab@hachyderm.io

Polish below / Polski poniżej, boosts appreciated!

I’m very glad to announce we have an official date for the next Nix User Group Poland Meetup! If you happen to be around Gdańsk, Warsaw, or Poznan on the 23rd of May, please come to either HS3, HSWaw, or HSPoz and join us for some great talks, great people, and great Nix. We’ll be starting at 17.00.
We coordinated between the three hackerspaces to connect them through streams, so any talk in any place will be appreciated from all 3.
We’re still open for more talks, so be sure to use the submission form or contact me directly if you want to share anything nix-related with our community.

More info at our channels:
Discord: discord.gg/eJnKKjQ3Bc
Matrix: -poland:matrix.org

We hope to see you there!

=======

Z przyjemnością ogłaszam, że mamy datę następnego meetup-u Nix User Group Polska! Jeśli będziesz w okolicy Gdańska, Warszawy, czy Poznania 23 maja serdecznie zapraszamy do jednego z HS3, HSWaw, i HSPoz na świetne prelekcje, do świetnych ludzi, i na świetne Nixowanie.
Zaczynamy o 17.00.
Meetup będzie odbywać się równocześnie we wszystkich 3 hackerspejsach, które będą połączone streamami, więc każda prelekcja z każdej lokalizacji, będzie oglądana w każdej innej.
Wciąż jesteśmy otwarci na więcej prezentacji, więc jeśli masz coś około-Nixowego do podzielenia się z community, zapraszamy do wypełnienia formularza, albo skontaktowania się ze mną.

Więcej info na naszych kanałach:
Discord: discord.gg/eJnKKjQ3Bc
Matrix: -poland:matrix.org

Do zobaczenia!

Areskul's avatar
Areskul

@jean_dupont@mastodon.social

Areskul's avatar
Areskul

@jean_dupont@mastodon.social

NixOS's avatar
NixOS

@nixos_org@chaos.social

Join us for the 6th Zürich ZHF hackathon on May 24-25! Help prepare for 25.05 Warbler release: fix bugs, learn , network with contributors! Bring a friend, and meet the community. Details discourse.nixos.org/t/2025-05-

Sandro :nixos: :verified_gay:'s avatar
Sandro :nixos: :verified_gay:

@sandro@c3d2.social

: Files in the store link directory always start with a 1.

eg.: /nix/store/.links/1zzzy....

NixOS's avatar
NixOS

@nixos_org@chaos.social

🚨 Only 10 days left to apply for Summer of Nix 2025! 🚨
Are you a student or early-career dev passionate about ?
Join a paid summer program to work on real projects, learn with experienced mentors, and connect with a global community.
Apply by May 12: github.com/ngi-nix/summer-of-n

vascorsd's avatar
vascorsd

@vascorsd@mastodon.social

Opam's Nix system dependency mechanism

ryan.freumh.org/opam-nix.html

vascorsd's avatar
vascorsd

@vascorsd@mastodon.social

Opam's Nix system dependency mechanism

ryan.freumh.org/opam-nix.html

Chris McDonough ✅'s avatar
Chris McDonough ✅

@chrism@chattingdarkly.org

NixOS 98: Flox vs Devenv

youtube.com/watch?v=ovYw7cEG8h

Chris McDonough ✅'s avatar
Chris McDonough ✅

@chrism@chattingdarkly.org

NixOS 98: Flox vs Devenv

youtube.com/watch?v=ovYw7cEG8h

Sandro :nixos: :verified_gay:'s avatar
Sandro :nixos: :verified_gay:

@sandro@c3d2.social

If only would be more like with :blobcataww:

Sandro :nixos: :verified_gay:'s avatar
Sandro :nixos: :verified_gay:

@sandro@c3d2.social

If only would be more like with :blobcataww:

NixOS's avatar
NixOS

@nixos_org@chaos.social

North County had its first 2025 meetup on April 20th!
Thanks to Connor, Grant, Tristan, and Dan for joining the fun!

More details: discourse.nixos.org/t/north-co

Khleedril's avatar
Khleedril

@khleedril@cyberplace.social · Reply to Jan <3's post

@janvhs came into existence to make a better . Using Guile scheme as the configuration language, as well as, increasingly, the implementation language of itself, the system is much more powerful and easier to adapt to customization. This has led to great things, which scrambles to keep up with.

Jan <3's avatar
Jan <3

@janvhs@hachyderm.io

Honest question: What is the reason for to exist? Is it just because is not GPL licensed or do they have a crazy unique feature?

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

`services.espanso` now supports wayland. This is enabled by default on Linux as `services.espanso.waylandSupport = true;`. Depending on your graphical session type, you may disable one of `services.espanso.x11Support` and `services.espanso.waylandSupport` to reduce the closure size of espanso on your system. Both x11 and wayland versions come enabled by default on Linux.

Katzenmann's avatar
Katzenmann

@katzenmann@c3d2.social

Damn. I love and but NixOS updates are just annoying. They're painfully slow and lag the whole system even on high-end machines.

I really do enjoy not being able to use my system for 1 hour just to update it. I thought I left this behind when I left Windows.

Lix Project's avatar
Lix Project

@lix_project@chaos.social

EDIT: after further investigation this is actually mistaken and doesn't affect the majority of store operations; this one is likely not the issue

Quick PSA: do you run a binary cache? Is WantMassQuery: 1 not in its nix-cache-info file?

~~If it's not in there, clients will take an extremely long time to query whether paths are present in your cache by trying them one by one serially.~~

Lix Project's avatar
Lix Project

@lix_project@chaos.social

EDIT: after further investigation this is actually mistaken and doesn't affect the majority of store operations; this one is likely not the issue

Quick PSA: do you run a binary cache? Is WantMassQuery: 1 not in its nix-cache-info file?

~~If it's not in there, clients will take an extremely long time to query whether paths are present in your cache by trying them one by one serially.~~

Raito Bezarius's avatar
Raito Bezarius

@raito@nixos.paris

OH: is an fd opening machine, we can already contrive circumstances that blow it up

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange

SaltSprint, a new NixOS hackathon in Halle (Saale), Germany, announced!

From June 30 – July 4, 2025, a week of intense Nix hacking, collaboration, and knowledge sharing in central Germany.

saltsprint.org/

The sprint is hosted by flyingcircus.io/.

piegames's avatar
piegames

@piegames@flausch.social

, or as I call it, the Bash Templating Language

piegames's avatar
piegames

@piegames@flausch.social

, or as I call it, the Bash Templating Language

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange

SaltSprint, a new NixOS hackathon in Halle (Saale), Germany, announced!

From June 30 – July 4, 2025, a week of intense Nix hacking, collaboration, and knowledge sharing in central Germany.

saltsprint.org/

The sprint is hosted by flyingcircus.io/.

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange

SaltSprint, a new NixOS hackathon in Halle (Saale), Germany, announced!

From June 30 – July 4, 2025, a week of intense Nix hacking, collaboration, and knowledge sharing in central Germany.

saltsprint.org/

The sprint is hosted by flyingcircus.io/.

Chris is.'s avatar
Chris is.

@offby1@wandering.shop

I am once again imploring the development community to STOP COMMITTING DIRENV CONFIGURATION THAT ASSUMES NIX DEVELOPMENT.

I just found one where their .envrc _actually tries to install nix_.

Fuck all the way off with that. If I'm looking into your library, I am not also looking into what basically at this point looks like a cult.

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange · Reply to Paul Meyer's post

In the same chat 😆 :

@ronefroni:

Nix or Docker, if you would have to choose one?

Kelsey:

I'm choosing Docker.

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange

You don't have to chase the commercial endeavor, but it may come [...] to you. [...] So I would think of it this way: If you want there to be peace in the project, give people extension points where necessary, so that everything doesn't have to flow into core in order to feel like it's a first class citizen. - @kelseyhightower at PlanetNix 2025

Quite some interesting takes by Kelsey on the Nix project. I hope we can get to a point where commercial and non-commercial interests can co-exist in the project. Watch the full thing here:

Fireside Chat with Kelsey Hightower: An Outsider’s Look at Nix
youtu.be/caxcawUCSZ8

@planetnix

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: `programs.television` television is a cross-platform, fast and extensible general purpose fuzzy finder TUI.

Thor A. Hopland's avatar
Thor A. Hopland

@hopland@snabelen.no

In the snow theme was used to illustrate that each flake is a perfect recreation, which didn't aptly describe this glorified build system.

The best analogy (even within the community) has been the cooking analogy.

are the kitchen utensils, the recipes, the pantry, packages ingredients, profiles are tables and derivations are dishes.

This proves that we need , because suck at naming things.

youtu.be/aifMfQepzjo
@BrodieOnLinux

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.clock-rs'. clock-rs is a modern, digital clock that effortlessly runs in your terminal.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.wallust'. Wallust generates colors from an images, similar to pywal.

Abhinav 🌏's avatar
Abhinav 🌏

@abnv@fantastic.earth

I wrote a note about how to run a server on : notes.abhinavsarkar.net/2025/g

Abhinav 🌏's avatar
Abhinav 🌏

@abnv@fantastic.earth

I wrote a note about how to run a server on : notes.abhinavsarkar.net/2025/g

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.inori'. inori is a client for the Music Player Daemon (MPD)

Linux Is Best's avatar
Linux Is Best

@Linux@mk.absturztau.be

Dear NixOS,

Stop renaming shit.

Linux Is Best's avatar
Linux Is Best

@Linux@mk.absturztau.be

Dear NixOS,

Stop renaming shit.

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange · Reply to Paul Meyer's post

There is also a nice article by nixcademy that gives more background on laziness, has some illustrations and more examples for fix and overlays: nixcademy.com/posts/what-you-n

Grimmauld's avatar
Grimmauld

@grimmauld@mastodon.grimmauld.de

I have to say, my automatic dependency scanner [1] for packages is already working better than expected!

So far i found unused dependencies in git [2], gst-plugins-bad [3], [4], linux-pam [5], networkmanager [6] and vlc [7]. And i don't plan on stopping! All these unused dependencies cause unnecessary strain on our CI and are trivial to clean up. Some of these dependencies are even old enough to drink!

I will give a talk about the tool at @cccda this Monday in the hopes of getting more people excited for this cleanup work, and to get ideas about improving the tool.

[1] github.com/LordGrimmauld/nix-c

[2] github.com/NixOS/nixpkgs/pull/
[3] github.com/NixOS/nixpkgs/pull/
[4] github.com/NixOS/nixpkgs/pull/
[5] github.com/NixOS/nixpkgs/pull/
[6] github.com/NixOS/nixpkgs/pull/
[7] github.com/NixOS/nixpkgs/pull/

Grimmauld's avatar
Grimmauld

@grimmauld@mastodon.grimmauld.de

I have to say, my automatic dependency scanner [1] for packages is already working better than expected!

So far i found unused dependencies in git [2], gst-plugins-bad [3], [4], linux-pam [5], networkmanager [6] and vlc [7]. And i don't plan on stopping! All these unused dependencies cause unnecessary strain on our CI and are trivial to clean up. Some of these dependencies are even old enough to drink!

I will give a talk about the tool at @cccda this Monday in the hopes of getting more people excited for this cleanup work, and to get ideas about improving the tool.

[1] github.com/LordGrimmauld/nix-c

[2] github.com/NixOS/nixpkgs/pull/
[3] github.com/NixOS/nixpkgs/pull/
[4] github.com/NixOS/nixpkgs/pull/
[5] github.com/NixOS/nixpkgs/pull/
[6] github.com/NixOS/nixpkgs/pull/
[7] github.com/NixOS/nixpkgs/pull/

Grimmauld's avatar
Grimmauld

@grimmauld@mastodon.grimmauld.de

I have to say, my automatic dependency scanner [1] for packages is already working better than expected!

So far i found unused dependencies in git [2], gst-plugins-bad [3], [4], linux-pam [5], networkmanager [6] and vlc [7]. And i don't plan on stopping! All these unused dependencies cause unnecessary strain on our CI and are trivial to clean up. Some of these dependencies are even old enough to drink!

I will give a talk about the tool at @cccda this Monday in the hopes of getting more people excited for this cleanup work, and to get ideas about improving the tool.

[1] github.com/LordGrimmauld/nix-c

[2] github.com/NixOS/nixpkgs/pull/
[3] github.com/NixOS/nixpkgs/pull/
[4] github.com/NixOS/nixpkgs/pull/
[5] github.com/NixOS/nixpkgs/pull/
[6] github.com/NixOS/nixpkgs/pull/
[7] github.com/NixOS/nixpkgs/pull/

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange

For many, overlays, and fixed-point functions as underlying concept, are hard to gasp in .

I found the documentation to be actually quite good in this case, checkout the function docs of fix and extends (and read in this order). Both have great examples/steps that guide you through, which was really helpful to me.

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange

For many, overlays, and fixed-point functions as underlying concept, are hard to gasp in .

I found the documentation to be actually quite good in this case, checkout the function docs of fix and extends (and read in this order). Both have great examples/steps that guide you through, which was really helpful to me.

vae :neocat_flag_nb:'s avatar
vae :neocat_flag_nb:

@bex@theshark-smellslike.sparklef.art

nix question

I've been staring at this for too long and can't understand what I'm doing wrong.. Can someone with more brain halp plz? :3

    environment.systemPackages = with pkgs;
      [
        ...
      ]
      ++ lib.mkIf config.someoption.enable [
        ...
      ];

Gives me this:
error: expected a list but found a set: { _type = "if"; condition = «thunk»; content = «thunk»; }

I basically copied this from my old config that I
know used to work (though it had been commented out for a few months, so maybe something's changed?)

Using latest lix, if that matters.

(bbl, sleep
:neocat_flop_sleep:)

Atemu's avatar
Atemu

@Atemu@darmstadt.social

Any way to trigger a command in with the press of a button on the home screen?

For there is the widget app but it doesn't appear to work with -on-droid.

I really don't want to have to install and maintain using some install script and some prebuilt global FHS binaries when I could simply get it from .

Jake Hamilton's avatar
Jake Hamilton

@jakehamilton@hachyderm.io

🚨WARNING🚨

Apparently some / matrix room(s) have gotten csam spam. I have not verified this claim myself, but honestly, we can all probably just not check matrix for a few days until hopefully things are back to normal.

I do *not* know what utilities provides to prevent the proliferation of this information. If you joined the room from a different home server then your server may have synchronized the material to your infrastructure.

I think the safest course of action is not opening a matrix client for a few days...

Morten Linderud's avatar
Morten Linderud

@Foxboron@chaos.social

> Fedora change aims for 99% package reproducibility

Nice, cool. Let's check 🟧.

> I often see initiatives and articles like this but no mention of . [...] Should it [Fedora] adopt an alternate package manager to achieve this with less headache?

Ah, yes.

Fixing your existing package manager is *clearly* more of a headache than changing the entire package manager.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'services.way-displays'. A service to automatically configure your displays on wlroots-based wayland compositors.

George Macon's avatar
George Macon

@gmacon@indieweb.social

I got curious and tried to configure to run the daemon as a non-root user. It *kinda* worked; the deamon starts up, but fork-bombs the system as soon as you try to do anything: github.com/gmacon/nix-daemon-r

Dresden Systems Meetup's avatar
Dresden Systems Meetup

@dd_systems_meetup@mastodon.social

Hey everyone!
and enable declarative systems and reproducible builds — topics that are especially interesting to the systems community.

Next Tuesday (2025-04-15), Cyberus Technology is hosting a Nix , and it's open to everyone!
If you're interested in joining, just react to this message with an emoji. 👋

📍 Cyberus Technology Office, Zwickauer Straße 46
⏰ Tue., April 15, 18-22 o'clock
🍕 Pizza and drinks included

Dresden Systems Meetup's avatar
Dresden Systems Meetup

@dd_systems_meetup@mastodon.social

Hey everyone!
and enable declarative systems and reproducible builds — topics that are especially interesting to the systems community.

Next Tuesday (2025-04-15), Cyberus Technology is hosting a Nix , and it's open to everyone!
If you're interested in joining, just react to this message with an emoji. 👋

📍 Cyberus Technology Office, Zwickauer Straße 46
⏰ Tue., April 15, 18-22 o'clock
🍕 Pizza and drinks included

Nina's avatar
Nina

@e1mo@fem.social

If you've ever wondered what the hell string contexts are in , this post is quite a good read:

shealevy.com/blog/2018/08/05/u

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new way to define news is available. Instead of editing the previous news.nix file, you can now define entries using individual files. This should reduce the number of merge conflicts.

Grimmauld's avatar
Grimmauld

@grimmauld@mastodon.grimmauld.de

I have to say, my automatic dependency scanner [1] for packages is already working better than expected!

So far i found unused dependencies in git [2], gst-plugins-bad [3], [4], linux-pam [5], networkmanager [6] and vlc [7]. And i don't plan on stopping! All these unused dependencies cause unnecessary strain on our CI and are trivial to clean up. Some of these dependencies are even old enough to drink!

I will give a talk about the tool at @cccda this Monday in the hopes of getting more people excited for this cleanup work, and to get ideas about improving the tool.

[1] github.com/LordGrimmauld/nix-c

[2] github.com/NixOS/nixpkgs/pull/
[3] github.com/NixOS/nixpkgs/pull/
[4] github.com/NixOS/nixpkgs/pull/
[5] github.com/NixOS/nixpkgs/pull/
[6] github.com/NixOS/nixpkgs/pull/
[7] github.com/NixOS/nixpkgs/pull/

Grimmauld's avatar
Grimmauld

@grimmauld@mastodon.grimmauld.de

I have to say, my automatic dependency scanner [1] for packages is already working better than expected!

So far i found unused dependencies in git [2], gst-plugins-bad [3], [4], linux-pam [5], networkmanager [6] and vlc [7]. And i don't plan on stopping! All these unused dependencies cause unnecessary strain on our CI and are trivial to clean up. Some of these dependencies are even old enough to drink!

I will give a talk about the tool at @cccda this Monday in the hopes of getting more people excited for this cleanup work, and to get ideas about improving the tool.

[1] github.com/LordGrimmauld/nix-c

[2] github.com/NixOS/nixpkgs/pull/
[3] github.com/NixOS/nixpkgs/pull/
[4] github.com/NixOS/nixpkgs/pull/
[5] github.com/NixOS/nixpkgs/pull/
[6] github.com/NixOS/nixpkgs/pull/
[7] github.com/NixOS/nixpkgs/pull/

Grimmauld's avatar
Grimmauld

@grimmauld@mastodon.grimmauld.de

I have to say, my automatic dependency scanner [1] for packages is already working better than expected!

So far i found unused dependencies in git [2], gst-plugins-bad [3], [4], linux-pam [5], networkmanager [6] and vlc [7]. And i don't plan on stopping! All these unused dependencies cause unnecessary strain on our CI and are trivial to clean up. Some of these dependencies are even old enough to drink!

I will give a talk about the tool at @cccda this Monday in the hopes of getting more people excited for this cleanup work, and to get ideas about improving the tool.

[1] github.com/LordGrimmauld/nix-c

[2] github.com/NixOS/nixpkgs/pull/
[3] github.com/NixOS/nixpkgs/pull/
[4] github.com/NixOS/nixpkgs/pull/
[5] github.com/NixOS/nixpkgs/pull/
[6] github.com/NixOS/nixpkgs/pull/
[7] github.com/NixOS/nixpkgs/pull/

Sandro :nixos: :verified_gay:'s avatar
Sandro :nixos: :verified_gay:

@sandro@c3d2.social

Today I got to know that 2.27 added support and proper submodules and lfs support to ! 🎉

Grimmauld's avatar
Grimmauld

@grimmauld@mastodon.grimmauld.de

I have to say, my automatic dependency scanner [1] for packages is already working better than expected!

So far i found unused dependencies in git [2], gst-plugins-bad [3], [4], linux-pam [5], networkmanager [6] and vlc [7]. And i don't plan on stopping! All these unused dependencies cause unnecessary strain on our CI and are trivial to clean up. Some of these dependencies are even old enough to drink!

I will give a talk about the tool at @cccda this Monday in the hopes of getting more people excited for this cleanup work, and to get ideas about improving the tool.

[1] github.com/LordGrimmauld/nix-c

[2] github.com/NixOS/nixpkgs/pull/
[3] github.com/NixOS/nixpkgs/pull/
[4] github.com/NixOS/nixpkgs/pull/
[5] github.com/NixOS/nixpkgs/pull/
[6] github.com/NixOS/nixpkgs/pull/
[7] github.com/NixOS/nixpkgs/pull/

Grimmauld's avatar
Grimmauld

@grimmauld@mastodon.grimmauld.de

I have to say, my automatic dependency scanner [1] for packages is already working better than expected!

So far i found unused dependencies in git [2], gst-plugins-bad [3], [4], linux-pam [5], networkmanager [6] and vlc [7]. And i don't plan on stopping! All these unused dependencies cause unnecessary strain on our CI and are trivial to clean up. Some of these dependencies are even old enough to drink!

I will give a talk about the tool at @cccda this Monday in the hopes of getting more people excited for this cleanup work, and to get ideas about improving the tool.

[1] github.com/LordGrimmauld/nix-c

[2] github.com/NixOS/nixpkgs/pull/
[3] github.com/NixOS/nixpkgs/pull/
[4] github.com/NixOS/nixpkgs/pull/
[5] github.com/NixOS/nixpkgs/pull/
[6] github.com/NixOS/nixpkgs/pull/
[7] github.com/NixOS/nixpkgs/pull/

Grimmauld's avatar
Grimmauld

@grimmauld@mastodon.grimmauld.de

I have to say, my automatic dependency scanner [1] for packages is already working better than expected!

So far i found unused dependencies in git [2], gst-plugins-bad [3], [4], linux-pam [5], networkmanager [6] and vlc [7]. And i don't plan on stopping! All these unused dependencies cause unnecessary strain on our CI and are trivial to clean up. Some of these dependencies are even old enough to drink!

I will give a talk about the tool at @cccda this Monday in the hopes of getting more people excited for this cleanup work, and to get ideas about improving the tool.

[1] github.com/LordGrimmauld/nix-c

[2] github.com/NixOS/nixpkgs/pull/
[3] github.com/NixOS/nixpkgs/pull/
[4] github.com/NixOS/nixpkgs/pull/
[5] github.com/NixOS/nixpkgs/pull/
[6] github.com/NixOS/nixpkgs/pull/
[7] github.com/NixOS/nixpkgs/pull/

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.smug'. Session manager and task runner for tmux written in Go. See github.com/ivaaaan/smug for more information.

daniel :nixos:'s avatar
daniel :nixos:

@daniel@networked.systems

My current mood is: do not use python3 when building Python packages, use the generic python parameter instead

#nix #nixpkgs

daniel :nixos:'s avatar
daniel :nixos:

@daniel@networked.systems

My current mood is: do not use python3 when building Python packages, use the generic python parameter instead

#nix #nixpkgs

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

Jq module now supports color for object keys Your configuration will break if you have defined the "programs.jq.colors" option. To resolve this, please add `objectKeys` to your assignment of `programs.jq.colors`.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new service is available: 'services.home-manager.autoExpire'. A service that allow to automatically expire (and optionally clean-up Nix's store) old Home-Manager generations.

Brian McKenna's avatar
Brian McKenna

@puffnfresh@mastodon.social

The start of native Windows support for is amazing: github.com/NixOS/nix/pull/8901 - still a huge amount of work to do: process management being the next big thing I see

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.streamlink'. Streamlink is a CLI utility which pipes video streams from various services into a video player.

Robert Hensing's avatar
Robert Hensing

@roberth@functional.cafe · Reply to Katzenmann's post

@katzenmann @nixos_org One of the hurdles is stabilizing an underlying feature like fetchTree. @domenkozar is doing some great work on that with an alternate implementation of it in , exposing some of the unfortunate choices that all implementations should backtrack on.

This may lead to a small change in behavior in Flakes that would not be considered acceptable normally for non-experimental parts of Nix, but will be necessary in order to fix various problems that exist within Flakes.

For a user of Flakes, this means that you may have to put up with a binary cache miss, or synchronizing your Nix update with your team, but you shouldn't have to overhaul your code or anything.

Jake Hamilton's avatar
Jake Hamilton

@jakehamilton@hachyderm.io

What do you need from flakes? What would get you to replace them with something else?

Jake Hamilton's avatar
Jake Hamilton

@jakehamilton@hachyderm.io

I wish we could put dynamic things in module imports. I understand why it doesn't work, but it would be so nice to add something like `config.mymodules.moduleA` to the list and not have to think about things...

Arik Grahl's avatar
Arik Grahl

@arikgrahl@chaos.social

Thank y'all for the first day of with great talks and inspiring conversations!

I am excited that I got a spot for the ​s.
Looking forward to present you a tool leveraging modules to declare workloads fully declarative.
I will also show how its integration essentially bridges the and ecosystem effectively, while offering additionally type safety.

See you at 18:15 in the hall !

Arik Grahl's avatar
Arik Grahl

@arikgrahl@chaos.social

Thank y'all for the first day of with great talks and inspiring conversations!

I am excited that I got a spot for the ​s.
Looking forward to present you a tool leveraging modules to declare workloads fully declarative.
I will also show how its integration essentially bridges the and ecosystem effectively, while offering additionally type safety.

See you at 18:15 in the hall !

transcaffeine ✨️'s avatar
transcaffeine ✨️

@transcaffeine@mond-basis.eu

dear internet, i have a nixos with an efi-only partition and i want to do luks unlock via ssh from inside initrd. when setting network settings into `boot.initrd.network` and ssh config (with host keys in /boot/efi) into `boot.initrd.network.ssh`, i do not get any action in stage 1 attempting to either bring up the network nor launch SSH. i get the normal systemd-udev prompt for the luks passphrase. any ideas?

Jake Hamilton's avatar
Jake Hamilton

@jakehamilton@hachyderm.io

Announcing Foundation, a binary bootstrap chain for !

forum.auxolotl.org/t/aux-found

Jake Hamilton's avatar
Jake Hamilton

@jakehamilton@hachyderm.io

Announcing Foundation, a binary bootstrap chain for !

forum.auxolotl.org/t/aux-found

Jake Hamilton's avatar
Jake Hamilton

@jakehamilton@hachyderm.io

Announcing the `v1.0.0` release of Lib, a fully-featured library with its own module system.

forum.auxolotl.org/t/aux-lib-v

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.sesh'. Sesh is a CLI that helps you create and manage tmux sessions quickly and easily using zoxide. See github.com/joshmedeski/sesh for more.

Justinas's avatar
Justinas

@justinas@treehouse.systems

Given that 's `builtins.tail` is said to be inefficient and best avoided (noogle.dev/f/builtins/tail), what alternative method should one use to "manually iterate" through a list?

Nixpkgs' `lib.lists` doesn't care much and uses `head` and `tail`. github.com/NixOS/nixpkgs/blob/

NixOS's avatar
NixOS

@nixos_org@chaos.social

Mark your calendars! 2025 is set:
📍 Where: OST, Rapperswil-Jona, Switzerland
📅 When: September 5-7, 2025 (Fri-Sun)

Tag your fellow Nix fans, spread the word, and let’s make this the best NixCon yet! More details here: discourse.nixos.org/t/nixcon-2

Areskul's avatar
Areskul

@jean_dupont@mastodon.social

Lobsters's avatar
Lobsters

@lobsters@mastodon.social

Sécurix, a NixOS-based secure operating system tailored for small to medium-sized teams lobste.rs/s/9tmwpa
github.com/cloud-gouv/securix

Lobsters's avatar
Lobsters

@lobsters@mastodon.social

Sécurix, a NixOS-based secure operating system tailored for small to medium-sized teams lobste.rs/s/9tmwpa
github.com/cloud-gouv/securix

NixOS's avatar
NixOS

@nixos_org@chaos.social

Casual Meetup in Vienna! Join an informal NixOS meetup to chat about all things & NixOS!

📅 April 7, 2025 | 🕕 18:00 | 📍 GT_, Augasse 2-6, 1090 Wien
discourse.nixos.org/t/communit

futurile

@futurile@mastodon.social

social talk this week by @paulbutgold on self-hosting @forgejo using /

His Gocix project brings the power of declarative configuration to running container services.

Details on the Wiki or register at the Meetup:

- libreplanet.org/wiki/Group:Gui

- meetup.com/guix-social/events/

@fnat

Image of the title screen of a talk. Consists of a picture of Giacomo Leidi, and the title of the talk "Self-hosting Forgejo in Guix using OCI Containers" with a sub-heading of "Declarative Docker and OCI Container Services"
ALT text detailsImage of the title screen of a talk. Consists of a picture of Giacomo Leidi, and the title of the talk "Self-hosting Forgejo in Guix using OCI Containers" with a sub-heading of "Declarative Docker and OCI Container Services"
Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange

Nice, lib.packagesFromDirectoryRecursive now supports nested scopes!

packagesFromDirectoryRecursive transforms a directory tree of packages into a nested attribute set of derivations. You can use it to manage a package set in a similar way to by-name in nixpkgs (without the sharding part). The package files in tree must be suitable for callPackage.

Subdirectories in the tree result in nested attribute sets. In the following example, packages d, e and f will be in a nested attribute set called my-namespace.

my-packages
├── a.nix
├── b.nix
├── c
│ ├── my-extra-feature.patch
│ ├── package.nix
│ └── support-definitions.nix
└── my-namespace
├── d.nix
├── e.nix
└── f
└── package.nix

Previously, this would only use one scope (my-packages), so e could only depend on d as my-packages.d. With the introduction of nested scopes, e can refer to d within the same scope directly.

PR: github.com/NixOS/nixpkgs/pull/

function doc on noogle (which isn't yet updated for the new behavior): noogle.dev/f/lib/packagesFromD

Yvan Sraka's avatar
Yvan Sraka

@yvan@functional.cafe · Reply to Yvan Sraka's post

We are hosting the 10th iteration (I forgot to toot about the previous one) of our Brussels / / User Group Meetup next Friday, March 28th, at @HSBXL!

The lightning talks planned so far are:
- Local DNS server with CoreDNS by Hugo
- Self-hosting a Mastodon instance by @xavier and myself :)

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'services.mpdscribble'. A MPD client which submits information about tracks being played to a scrobbler (e.g. last.fm)

Yvan Sraka's avatar
Yvan Sraka

@yvan@functional.cafe · Reply to Yvan Sraka's post

We are hosting the 10th iteration (I forgot to toot about the previous one) of our Brussels / / User Group Meetup next Friday, March 28th, at @HSBXL!

The lightning talks planned so far are:
- Local DNS server with CoreDNS by Hugo
- Self-hosting a Mastodon instance by @xavier and myself :)

Ivan's avatar
Ivan

@ivan@hachyderm.io

You *should* be very careful which substituters (caches) you trust since you have to trust who can push to them. Effectively you are trusting them with root on your machine.

You *should* be wary of “community” caches if you don’t want to have to vet who has access there.

You *should* build things from source yourself if you do not wish to trust the build farm and Hydra infrastructure (or to lessen the load on their CDN)

What you should ABSOLUTELY NOT do is trust some random VC backed company (which may or may not have a business relationship with military-industrial-complex contractors) over the actual NixOS project which stewards the actual sources you trust to be secure in the first place

Ivan's avatar
Ivan

@ivan@hachyderm.io

You *should* be very careful which substituters (caches) you trust since you have to trust who can push to them. Effectively you are trusting them with root on your machine.

You *should* be wary of “community” caches if you don’t want to have to vet who has access there.

You *should* build things from source yourself if you do not wish to trust the build farm and Hydra infrastructure (or to lessen the load on their CDN)

What you should ABSOLUTELY NOT do is trust some random VC backed company (which may or may not have a business relationship with military-industrial-complex contractors) over the actual NixOS project which stewards the actual sources you trust to be secure in the first place

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

The following default values change from 'true' to 'false': - programs.zellij.enableBashIntegration - programs.zellij.enableFishIntegration - programs.zellij.enableZshIntegration

Zack Weinberg's avatar
Zack Weinberg

@zwol@hackers.town

[current mood: xkcd.com/349/ ]

I need someone who already has an account on git.lix.systems/ to file a bug report for me. I have repeatedly tried to create an account and the email confirmation email just never shows up.

I would also accept "manual creation of a non-github-based account" for me (as per the FAQ). No, I can't use Matrix to ask for one. I don't want to talk about that.

Zack Weinberg's avatar
Zack Weinberg

@zwol@hackers.town

on to the next puzzle

(for arbitrary nixos system configuration including disko-based declarative partitioning, how to enable generating *both* test VMs and installers? the obvious answer would seem to be "nixos-generators" but `nixosGenerate { format = "vm-nogui"; ... }` ignores disko configuration inside the `...`.)

Zack Weinberg's avatar
Zack Weinberg

@zwol@hackers.town

question: Is there any way at all to make "nix run" not insist on everything being committed to git? I want to be able to test my changes *before* I commit them.

futurile

@futurile@mastodon.social

social talk this week by @paulbutgold on self-hosting @forgejo using /

His Gocix project brings the power of declarative configuration to running container services.

Details on the Wiki or register at the Meetup:

- libreplanet.org/wiki/Group:Gui

- meetup.com/guix-social/events/

@fnat

Image of the title screen of a talk. Consists of a picture of Giacomo Leidi, and the title of the talk "Self-hosting Forgejo in Guix using OCI Containers" with a sub-heading of "Declarative Docker and OCI Container Services"
ALT text detailsImage of the title screen of a talk. Consists of a picture of Giacomo Leidi, and the title of the talk "Self-hosting Forgejo in Guix using OCI Containers" with a sub-heading of "Declarative Docker and OCI Container Services"
Karl Voit :emacs: :orgmode:'s avatar
Karl Voit :emacs: :orgmode:

@publicvoit@graz.social · Reply to Elias Probst's post

@eliasp While I know what you mean, I strongly disagree with that truncation.

First, the nixos hardware module needs to exist & support all of your particular hardware. This isn't a given thing depending on the HW you are about to use.

Secondly, there are still too many settings you need to do manually such as xfce environments, lots of app settings, ...

I started with NixOS in the naïve assumption that it is allowing me to define everything across all of my computers. I failed miserably & with the next opportunity, I'll switch back to Debian.

However, if you're totally open to let the community to choose the hardware platform (devices that do have a HW config module which supports all features), desktop environment (sway?) and all apps for you, then you're probably fine with "everything in your configuration". If not, you do spread misleading vibes here - so to say.

And yes, there's still the issue with not being to run in a normal way.

HTH

flashfox's avatar
flashfox

@flashfox@infosec.exchange

I though it had been a while without any drama, but of course the universe provides.

Guess what, telemetry in is coming back. Again, it's Opt-Out, not Opt-In.
The difference: this time that work is sponsored by the NixOS Foundation.

github.com/cachix/devenv/pull/

oceansprint.org/reports/2025/

Brought to you by @domenkozar of course.

hexa-'s avatar
hexa-

@hexa@chaos.social · Reply to la fillette révolutionnaire's post

@lizzy I could swear you're describing

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange · Reply to Paul Meyer's post

I had a super nice time on Lanzarote. Big thanks to the sponsors: numtide@fosstodon.org @nixos_org @cyberus @flox @cachix and rest!

You can read the full report of here: oceansprint.org/reports/2025/

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange · Reply to Paul Meyer's post

I had a super nice time on Lanzarote. Big thanks to the sponsors: numtide@fosstodon.org @nixos_org @cyberus @flox @cachix and rest!

You can read the full report of here: oceansprint.org/reports/2025/

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange · Reply to Paul Meyer's post

If you want to learn more about gobuild.nix and why we need it, checkout my talk at FOSDEM this year:
fosdem.org/2025/schedule/event

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange

2025 is over, it was an great experience!

I mostly worked on gobuild.nix, a next-generation builder for Go in nixpkgs. gobuild.nix removes vendoring for Go packages in nixpkgs, modeling the full dependency graph in Nix. Each module dependency will be its own derivation, including build cache on a module level.

During the sprint, I moved gobuild.nix from linking dependency source into a vendor directory to providing a local directory that can be used as GOPROXY. This is both more versatile and simple.

Together with @britter I started implementing a code generation tool that will help to package the large number of packages that will be part of the Go dependencies package set. The tool generates the Nix code for these packages, including the FOD hashes.

NixOS's avatar
NixOS

@nixos_org@chaos.social

Good news for all fans—Nix 2.27.0 has landed, and it’s bringing some great quality-of-life improvements!
A huge shoutout to the 21 contributors who made this release happen!
Want to upgrade? Get it here: releases.nixos.org/?prefix=nix

Read the announcement discourse.nixos.org/t/nix-2-27

Nick Bathum's avatar
Nick Bathum

@nbathum@hachyderm.io

Who’s keeping track of all the nix implementations?

I'm finally exploring lix (loving it!) and just saw snix announced. Are there any systematic comparisons out there? I'd appreciate links or resources!

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.tex-fmt'. tex-fmt is a LaTeX formatter written in Rust. See github.com/WGUNDERWOOD/tex-fmt for more information.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

The Easyeffects module now supports adding json formatted presets under '$XDG_CONFIG_HOME/easyeffects/{input,output}/'.

Vadim Rutkovsky's avatar
Vadim Rutkovsky

@vadim@m.vrutkovs.eu

Wait, with fedoraproject.org/wiki/Changes we can no longer use on ? github.com/DeterminateSystems/ says transient root needs to be enabled, but I can't figure out how to do that on a live system

Benedikt Ritter (he/him)'s avatar
Benedikt Ritter (he/him)

@britter@chaos.social

🌊💻 Greetings from 2025 in Lanzarote! 🚀

Surrounded by brilliant minds, we're hacking on , improving the ecosystem, and sharing knowledge—all with an ocean view. 🌊🏝️

Open-source is about community, innovation, and impact, and this sprint embodies it perfectly. Stay tuned for exciting updates!

People hacking on their laptops inside the living room of a villa
ALT text detailsPeople hacking on their laptops inside the living room of a villa
Lobsters's avatar
Lobsters

@lobsters@mastodon.social

Announcing Snix lobste.rs/s/s5p1ng
snix.dev/blog/announcing-snix/

Lobsters's avatar
Lobsters

@lobsters@mastodon.social

Announcing Snix lobste.rs/s/s5p1ng
snix.dev/blog/announcing-snix/

Lobsters's avatar
Lobsters

@lobsters@mastodon.social

Announcing Snix lobste.rs/s/s5p1ng
snix.dev/blog/announcing-snix/

Benedikt Ritter (he/him)'s avatar
Benedikt Ritter (he/him)

@britter@chaos.social

🌊💻 Greetings from 2025 in Lanzarote! 🚀

Surrounded by brilliant minds, we're hacking on , improving the ecosystem, and sharing knowledge—all with an ocean view. 🌊🏝️

Open-source is about community, innovation, and impact, and this sprint embodies it perfectly. Stay tuned for exciting updates!

People hacking on their laptops inside the living room of a villa
ALT text detailsPeople hacking on their laptops inside the living room of a villa
Benedikt Ritter (he/him)'s avatar
Benedikt Ritter (he/him)

@britter@chaos.social

🌊💻 Greetings from 2025 in Lanzarote! 🚀

Surrounded by brilliant minds, we're hacking on , improving the ecosystem, and sharing knowledge—all with an ocean view. 🌊🏝️

Open-source is about community, innovation, and impact, and this sprint embodies it perfectly. Stay tuned for exciting updates!

People hacking on their laptops inside the living room of a villa
ALT text detailsPeople hacking on their laptops inside the living room of a villa
Zack Weinberg's avatar
Zack Weinberg

@zwol@hackers.town

Spending a chunk of my weekend wrangling servers and once again frustrated with Guix in particular for how heavyweight the package manager is. There's this one VM that only needs like 5-10G of disk space* and 1G of RAM to do its actual _job_ but if I don't provision it with twice as much RAM and four times as much disk, `guix pull` and `guix system reconfigure` are liable to run the thing completely out of storage and crash.

I have a concrete idea for what to do about this, I call it a "drone" deployment of a declaratively configured OS. In Guix terms, this would be a type of system image, in which the guix-daemon and the `guix` command are *not* included. The store would include only the packages required at runtime by the operating-system spec, not any of the packages required to rebuild them.

The idea is that you have a separate beefier machine that rebuilds the image periodically, and then you push that image to the drone somehow, ideally in a way that mimics `nixos-rebuild --boot` (i.e. the running system is not affected until you reboot it).

In addition to making it possible to use a smaller machine or VM instance with this kind of OS, this should also be good for server hardening. The store could be kept read-only, you wouldn't have to consider the package manager as part of the attack surface, etc.

Has anyone done anything even vaguely like this already? For any base OS, not just declarative distributions of Linux?

* the part of me that grew up in the days of 1.44MB floppy disks is horrified that this is a *small* amount of disk space, but that's a me issue

HoldMyType's avatar
HoldMyType

@xameer@mathstodon.xyz

Features like IFD are useful in build systems because they allow build systems to be Monadic, in the words of the Hadrian paper: build things to decide what to build. By comparison, an Applicative build system such as Bazel can only take in things that are known statically; in Bazel it is thus common to check in generated build instructions. This property in category theory is illustrated in the type signatures of the operations of Monad and Applicative:

dl.acm.org/doi/10.1145/3241625
jade.fyi/blog/nix-evaluation-b

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.zsh.initContent'. initContent option allows you to set the content of the zshrc file, you can use `lib.mkOrder` to specify the order of the content you want to insert.

Jake Hamilton's avatar
Jake Hamilton

@jakehamilton@hachyderm.io

Alright, there we go, it is the end of an era!

github.com/jakehamilton/config

Flakes are officially out!

tdback's avatar
tdback

@tdback@social.tdback.net

Something useful I learned today I thought I would share with any fellow nix users hosting repositories on @Codeberg

You can specify a repository URL prepended with "git+" to run an application with the apps or packages flake output attributes:

```
nix run git+https://codeberg.org/tdback/apod
```

This should also work for any git repo available over http (although I haven't tested it yet with my cgit instance).

As a side note, it looks like some work has been done to add official Gitea/Forgejo flake inputs to nix, but the issue has been inactive for some time: https://github.com/NixOS/nix/issues/11135

#nix #nixos #forgejo

LavX News's avatar
LavX News

@lavxnews@mastodon.cloud

Unlocking NixOS: The Power of Dynamic Derivations

Dynamic derivations are set to revolutionize the NixOS ecosystem, enabling developers to create additional derivations at build time and streamline their workflows. This innovative feature promises to...

news.lavx.hu/article/unlocking

Unlocking NixOS: The Power of Dynamic Derivations
ALT text detailsUnlocking NixOS: The Power of Dynamic Derivations
tdback's avatar
tdback

@tdback@social.tdback.net

Something useful I learned today I thought I would share with any fellow nix users hosting repositories on @Codeberg

You can specify a repository URL prepended with "git+" to run an application with the apps or packages flake output attributes:

```
nix run git+https://codeberg.org/tdback/apod
```

This should also work for any git repo available over http (although I haven't tested it yet with my cgit instance).

As a side note, it looks like some work has been done to add official Gitea/Forgejo flake inputs to nix, but the issue has been inactive for some time: https://github.com/NixOS/nix/issues/11135

#nix #nixos #forgejo

samueldr's avatar
samueldr

@samueldr@ap.samueldr.com

Nix 🤡 fork

The “not-a-fork”[sic] fork of Nix has decided to go ahead and take over the next major version number out of the hands from the official Nix package, and from there, take over the mindshare of the version 3.0.

What the actual fuck?

This is effectively a hostile takeover of the Nix name. Nix 3.0 will surface the “not-a-fork”[sic] fork.

They will surely be using the excuse that it's “Determinate Nix”, which is a different name. But in practice, you know how it is. They are polluting the mindshare with their “not-a-fork”[sic] fork.

Also, this is absolutely 100% a fork, even though they say it's not.

This is a fork that has made the current state of Flakes stable. A major fork in the road. Either Nix will have to become "incompatible" with the stability “promises” from the “not-a-fork”[fork], or bow down to what Determinate Systems decides for compatibility, for their future.

I guess it's a good time to jump over to Lix, for anyone who hasn't done so. It work just fine with NixOS.

Hopefully we'll have a statement from the Nix project regarding this.

#NixOS #Nixpkgs #Nix

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.mods' mods is a command line AI tool that is highly configurable and allows querying AI models hosted locally or by other services (OpenAI, Cohere, Groq).

Jake Hamilton's avatar
Jake Hamilton

@jakehamilton@hachyderm.io

Throwing this out there, I am still available for work! If you have something related, / related, or / related then I would love to chat!

You can find more about my background and projects on my website (which also includes contact information): jakehamilton.dev

decafkafk's avatar
decafkafk

@cafkafk@catgirl.farm

This is a serious proposal, we should actually ban and denounce determinate systems now.

https://discourse.nixos.org/t/we-should-urgently-ban-and-denounce-determinate-systems/61356

Please.

#nix #nixos #nixpkgs

Justinas's avatar
Justinas

@justinas@treehouse.systems

Hey people. I am once again making a thesis that Nix docs are not "bad", their discoverability is bad.

I've summarized my observations in a comment on an existing (yet pretty stale) issue on GitHub github.com/NixOS/nixos-homepag

How do we get this to reach "the right people" and start making some moves to improve discoverability? Boosts and advice appreciated.

decafkafk's avatar
decafkafk

@cafkafk@catgirl.farm

This is a serious proposal, we should actually ban and denounce determinate systems now.

https://discourse.nixos.org/t/we-should-urgently-ban-and-denounce-determinate-systems/61356

Please.

#nix #nixos #nixpkgs

decafkafk's avatar
decafkafk

@cafkafk@catgirl.farm

This is a serious proposal, we should actually ban and denounce determinate systems now.

https://discourse.nixos.org/t/we-should-urgently-ban-and-denounce-determinate-systems/61356

Please.

#nix #nixos #nixpkgs

Jake Hamilton's avatar
Jake Hamilton

@jakehamilton@hachyderm.io

Okay, what do I need to do to get a Nixpkgs package set that successfully evaluates and doesn't take forever? If the answer is "you don't" then I am just going to load the flake instead because that is ridiculous.

Jake Hamilton's avatar
Jake Hamilton

@jakehamilton@hachyderm.io · Reply to Jake Hamilton's post

Do you use Flakes directly or do you use something like Flake Parts, Snowfall Lib, etc?

OptionVoters
Flakes directly87 (76%)
Via a library27 (24%)
Jake Hamilton's avatar
Jake Hamilton

@jakehamilton@hachyderm.io · Reply to Jake Hamilton's post

Do you use Flakes directly or do you use something like Flake Parts, Snowfall Lib, etc?

OptionVoters
Flakes directly87 (76%)
Via a library27 (24%)
Jake Hamilton's avatar
Jake Hamilton

@jakehamilton@hachyderm.io · Reply to Jake Hamilton's post

What features of flakes do you actually use? Please let me know! Packages? NixOS Configurations? Checks? Hydra Jobs? Let me know what is important for your use case.

Aires's avatar
Aires

@aires@tiggi.es

I wouldn't be nearly as willing to experiment with software or self-host different services if it wasn't for . It feels liberating to do basically whatever I want with my computers without the overbearing worry of irreversibly breaking something, or getting my PC into an unrecoverable state. is great tech and I really want to see it and similar tools/ecosystems thrive

Bryan's avatar
Bryan

@bryanhonof@mastodon.social

I’ll be speaking at Cloud Native Days LA in about leveraging / to build pretty small container images. I’ll make an attempt at showing you the benefits of using something like Nix to do this, and daydream about possible future integrations. Looking forward to seeing you there!

Promotional picture of me with the SCaLE22x branding advertising that I’ll be giving a talk with title “Using Nix to build pretty small images” at the Cloud Native Days LA (cloudnativedays.org).
ALT text detailsPromotional picture of me with the SCaLE22x branding advertising that I’ll be giving a talk with title “Using Nix to build pretty small images” at the Cloud Native Days LA (cloudnativedays.org).
Ponygol's avatar
Ponygol

@ponygol@chaos.social

Want to help out Nixpkgs but don't know what to do? I compiled a list of still failing packages due to switching to GCC-14 in stdenv a while back. GCC changed some warning to errors in this version and lots of especially older projects fail to build now.

Plenty of examples of the fix already in Nixpkgs, ideal for first time contributors.

polygon.github.io/fix-nixpkgs-

Josh Lee's avatar
Josh Lee

@joshleecreates@hachyderm.io

It was such a thrill to talk about at ! I'm about a month late posting this, but here is the recording of my talk on "My Nixos-Powered Homelab"
fosdem.org/2025/schedule/event

Aires's avatar
Aires

@aires@tiggi.es

I wouldn't be nearly as willing to experiment with software or self-host different services if it wasn't for . It feels liberating to do basically whatever I want with my computers without the overbearing worry of irreversibly breaking something, or getting my PC into an unrecoverable state. is great tech and I really want to see it and similar tools/ecosystems thrive

Anton Sipos's avatar
Anton Sipos

@aisipos@fosstodon.org

Flakes themselves don't have a versioning system.

Josh Lee's avatar
Josh Lee

@joshleecreates@hachyderm.io

It was such a thrill to talk about at ! I'm about a month late posting this, but here is the recording of my talk on "My Nixos-Powered Homelab"
fosdem.org/2025/schedule/event

Aires's avatar
Aires

@aires@tiggi.es

I wouldn't be nearly as willing to experiment with software or self-host different services if it wasn't for . It feels liberating to do basically whatever I want with my computers without the overbearing worry of irreversibly breaking something, or getting my PC into an unrecoverable state. is great tech and I really want to see it and similar tools/ecosystems thrive

Ponygol's avatar
Ponygol

@ponygol@chaos.social

Want to help out Nixpkgs but don't know what to do? I compiled a list of still failing packages due to switching to GCC-14 in stdenv a while back. GCC changed some warning to errors in this version and lots of especially older projects fail to build now.

Plenty of examples of the fix already in Nixpkgs, ideal for first time contributors.

polygon.github.io/fix-nixpkgs-

Bryan's avatar
Bryan

@bryanhonof@mastodon.social

I’ll be speaking at Cloud Native Days LA in about leveraging / to build pretty small container images. I’ll make an attempt at showing you the benefits of using something like Nix to do this, and daydream about possible future integrations. Looking forward to seeing you there!

Promotional picture of me with the SCaLE22x branding advertising that I’ll be giving a talk with title “Using Nix to build pretty small images” at the Cloud Native Days LA (cloudnativedays.org).
ALT text detailsPromotional picture of me with the SCaLE22x branding advertising that I’ll be giving a talk with title “Using Nix to build pretty small images” at the Cloud Native Days LA (cloudnativedays.org).
Yann Büchau :nixos:'s avatar
Yann Büchau :nixos:

@nobodyinperson@fosstodon.org

800 lines of :nixos: later and I have successfully beefed up our infrastructure at work @umphy with one 4:

· a gethomepage.dev landing page
· three fullHD webcams, one for each printer, with current filament visible
· a smart multiplug to remotely power off a printer in case of a problem/hangup
· 🐙 for the Prusa MK3S, by the ​s
· 🔐 all password-protected and certs from

homepage-dashboard (https://gethomepage.dev) showing links to Prusa printer webinterfaces and a Tasmota smart multiplug webinterface and three webcams, showing the idle printers
ALT text detailshomepage-dashboard (https://gethomepage.dev) showing links to Prusa printer webinterfaces and a Tasmota smart multiplug webinterface and three webcams, showing the idle printers
Tasmota webinterface of a NOUS A5T multisocket, showing buttons to switch off the three printers individually
ALT text detailsTasmota webinterface of a NOUS A5T multisocket, showing buttons to switch off the three printers individually
PrusaLink webinterface, showing cold (20°C) nozzle and bed temperatures and a prompt to upload a gcode file
ALT text detailsPrusaLink webinterface, showing cold (20°C) nozzle and bed temperatures and a prompt to upload a gcode file
drmorr's avatar
drmorr

@drmorr@hachyderm.io · Reply to drmorr's post

Dockerfiles don’t scale — no abstractions, copy-paste between files; limited parallelism, multi-stage kinda sucks; non-reproducibility; bloated images; linear caching.

Also this talk is going fast, gonna be fun to livestream 😅

drmorr's avatar
drmorr

@drmorr@hachyderm.io

Next talk: "Docker was too slow, so we replaced it: Nix in Production" by Aneesh Agrawal. Talking about how to use Nix to build container images for use with Kubernetes.

This is "probably" how I would start using Nix if I ever started using Nix, so I'm excited to learn more.

Yann Büchau :nixos:'s avatar
Yann Büchau :nixos:

@nobodyinperson@fosstodon.org

800 lines of :nixos: later and I have successfully beefed up our infrastructure at work @umphy with one 4:

· a gethomepage.dev landing page
· three fullHD webcams, one for each printer, with current filament visible
· a smart multiplug to remotely power off a printer in case of a problem/hangup
· 🐙 for the Prusa MK3S, by the ​s
· 🔐 all password-protected and certs from

homepage-dashboard (https://gethomepage.dev) showing links to Prusa printer webinterfaces and a Tasmota smart multiplug webinterface and three webcams, showing the idle printers
ALT text detailshomepage-dashboard (https://gethomepage.dev) showing links to Prusa printer webinterfaces and a Tasmota smart multiplug webinterface and three webcams, showing the idle printers
Tasmota webinterface of a NOUS A5T multisocket, showing buttons to switch off the three printers individually
ALT text detailsTasmota webinterface of a NOUS A5T multisocket, showing buttons to switch off the three printers individually
PrusaLink webinterface, showing cold (20°C) nozzle and bed temperatures and a prompt to upload a gcode file
ALT text detailsPrusaLink webinterface, showing cold (20°C) nozzle and bed temperatures and a prompt to upload a gcode file
Chris Wolff's avatar
Chris Wolff

@Christian_Freiherr_von_Wolff@defcon.social

Can someone please explain to me why my math is wrong here? I have a very hard time believing that the entire nixpkgs repo is only ~4.7 GB.

Curling the GitHub API for the size of NixOS' nixpkgs repo, which is returned in kilobytes; I then divide that number by 1,048,576 which, at least theoretically, should convert the original number into gigabytes.  I'm sure my math has to off, though, somehow; the end result says that the entire repo is only ~4.7 GB, and I'm sure it has to actually be way bigger than that.
ALT text detailsCurling the GitHub API for the size of NixOS' nixpkgs repo, which is returned in kilobytes; I then divide that number by 1,048,576 which, at least theoretically, should convert the original number into gigabytes. I'm sure my math has to off, though, somehow; the end result says that the entire repo is only ~4.7 GB, and I'm sure it has to actually be way bigger than that.
samueldr's avatar
samueldr

@samueldr@ap.samueldr.com

Nix 🤡 fork

The “not-a-fork”[sic] fork of Nix has decided to go ahead and take over the next major version number out of the hands from the official Nix package, and from there, take over the mindshare of the version 3.0.

What the actual fuck?

This is effectively a hostile takeover of the Nix name. Nix 3.0 will surface the “not-a-fork”[sic] fork.

They will surely be using the excuse that it's “Determinate Nix”, which is a different name. But in practice, you know how it is. They are polluting the mindshare with their “not-a-fork”[sic] fork.

Also, this is absolutely 100% a fork, even though they say it's not.

This is a fork that has made the current state of Flakes stable. A major fork in the road. Either Nix will have to become "incompatible" with the stability “promises” from the “not-a-fork”[fork], or bow down to what Determinate Systems decides for compatibility, for their future.

I guess it's a good time to jump over to Lix, for anyone who hasn't done so. It work just fine with NixOS.

Hopefully we'll have a statement from the Nix project regarding this.

#NixOS #Nixpkgs #Nix

samueldr's avatar
samueldr

@samueldr@ap.samueldr.com

Nix 🤡 fork

The “not-a-fork”[sic] fork of Nix has decided to go ahead and take over the next major version number out of the hands from the official Nix package, and from there, take over the mindshare of the version 3.0.

What the actual fuck?

This is effectively a hostile takeover of the Nix name. Nix 3.0 will surface the “not-a-fork”[sic] fork.

They will surely be using the excuse that it's “Determinate Nix”, which is a different name. But in practice, you know how it is. They are polluting the mindshare with their “not-a-fork”[sic] fork.

Also, this is absolutely 100% a fork, even though they say it's not.

This is a fork that has made the current state of Flakes stable. A major fork in the road. Either Nix will have to become "incompatible" with the stability “promises” from the “not-a-fork”[fork], or bow down to what Determinate Systems decides for compatibility, for their future.

I guess it's a good time to jump over to Lix, for anyone who hasn't done so. It work just fine with NixOS.

Hopefully we'll have a statement from the Nix project regarding this.

#NixOS #Nixpkgs #Nix

NixOS's avatar
NixOS

@nixos_org@chaos.social

🌍 Planet Nix is coming to SCALE 20X!

Join us March 6-7, 2025 for two days of talks, hands-on workshops, and community connections. Whether you're new to Nix or a longtime user, there's a place for you here.

Don’t miss out—let’s build the future of Nix together!
planetnix.com

Yann Büchau :nixos:'s avatar
Yann Büchau :nixos:

@nobodyinperson@fosstodon.org

Ich bin immer noch sehr zufrieden mit meinem Vortrag letztes Jahr auf dem @tuebix zum Thema "Dateien zeitstempeln, um damalige Existenz zu beweisen".

Wenn Du etwas über ein Problem wissen möchtest, bei dem Du gar nicht wusstest, dass Du es hast 😉, hier ist die Aufzeichnung:

tube.tchncs.de/w/jcJWeiQFPxgvi

Dieses Jahr auf dem werde ich wohl einen :nixos: / workshop geben.

Joshua Wood's avatar
Joshua Wood

@wood@hachyderm.io

Got my first development environment (Jekyll website) running in NixOS on my Framework laptop using devenv. That makes this my first successful dev environment in nix. :) Nice work @domenkozar!

devenv.sh

Charles Fulton's avatar
Charles Fulton

@mackensen@higheredweb.social

Switched my local development for Hexo from flakes to (still nix under the hood) and I'm happy with the result: blog.goodbyeplease.com/2024/08

Johnny's avatar
Johnny

@johnny@chaos.social

Explaining the store to people

Picture of a children's toy bucket with multiple different shaped holes cut in the top (square, circle, triangle, rectangle, arch). They are labelled /etc, /opt, /usr/lib, /usr/bin. The square is labelled /nix/store. A hand can be seen putting a cylinder labelled "literally anything" in the square hole
ALT text detailsPicture of a children's toy bucket with multiple different shaped holes cut in the top (square, circle, triangle, rectangle, arch). They are labelled /etc, /opt, /usr/lib, /usr/bin. The square is labelled /nix/store. A hand can be seen putting a cylinder labelled "literally anything" in the square hole
💩's avatar
💩

@flokli@im-in.space

Gave a new update and architectural overview on during : youtu.be/bm1jcTo8uYw

Determinate Systems, Inc.'s avatar
Determinate Systems, Inc.

@determinatesystems@hachyderm.io

🎉 It’s almost time! Planet Nix is just a few days away. If you're attending, let’s connect!

Whether you want to discuss enterprise Nix, DevOps workflows, or just grab a coffee, we’d love to chat. Send us a DM!

Determinate Systems, Inc.'s avatar
Determinate Systems, Inc.

@determinatesystems@hachyderm.io

🎉 It’s almost time! Planet Nix is just a few days away. If you're attending, let’s connect!

Whether you want to discuss enterprise Nix, DevOps workflows, or just grab a coffee, we’d love to chat. Send us a DM!

Erethon's avatar
Erethon

@erethon@libretooth.gr

A friend asked me some questions about and . So, naturally, I wrote a blog post with notes I wished I had access to when I first started using NixOS.

blog.erethon.com/blog/2025/02/

Beady Belle Fanchannel's avatar
Beady Belle Fanchannel

@Profpatsch@mastodon.xyz

> strace nix-build --verbose ~/nixpkgs -A hello 2>&1 | wc -l
27769

> strace nix build --verbose ~/nixpkgs#hello 2>&1 | wc -l
1320849

🤡

nialov's avatar
nialov

@nialov@fosstodon.org

Made module to define GitHub/Gitea actions in instead of `yaml` by rendering `nix` code to `yaml` using a defined package and/or pre-commit hook. This allows reuse of `nix` configured workflows across repositories 🚀 . Currently very much so a work-in-progress but issue reports and feature requests are very welcome so that it can be refined: github.com/nialov/actions.nix

Currently github.com/hercules-ci/flake-p is "required" but supporting more vanilla flakes is easily done, if needed.

Mike :nixos:'s avatar
Mike :nixos:

@codemonkeymike@fosstodon.org

Anyone going to / planet ?

It's next week!! I'll be speaking Friday morning all about building Nixbook!

Building a chromebook replacement with NixOS. 

Friday, 3/7/2025 10:30am
ALT text detailsBuilding a chromebook replacement with NixOS. Friday, 3/7/2025 10:30am
Ethan Carter Edwards's avatar
Ethan Carter Edwards

@ethancedwards@fosstodon.org

Check out my recent post on building Nix systems with GitHub Actions and Cachix! ethancedwards.com/blog/buildin .

Mike :nixos:'s avatar
Mike :nixos:

@codemonkeymike@fosstodon.org

Anyone going to / planet ?

It's next week!! I'll be speaking Friday morning all about building Nixbook!

Building a chromebook replacement with NixOS. 

Friday, 3/7/2025 10:30am
ALT text detailsBuilding a chromebook replacement with NixOS. Friday, 3/7/2025 10:30am
Ethan Carter Edwards's avatar
Ethan Carter Edwards

@ethancedwards@fosstodon.org

Check out my recent post on building Nix systems with GitHub Actions and Cachix! ethancedwards.com/blog/buildin .

Beady Belle Fanchannel's avatar
Beady Belle Fanchannel

@Profpatsch@mastodon.xyz

> strace nix-build --verbose ~/nixpkgs -A hello 2>&1 | wc -l
27769

> strace nix build --verbose ~/nixpkgs#hello 2>&1 | wc -l
1320849

🤡

secana 🦀's avatar
secana 🦀

@secana@mastodon.social

How long does it usually take for a new version to be available on ? It's currently on 1.84.1 but the latest Rust version is 1.85.

Klaus Frank's avatar
Klaus Frank

@agowa338@chaos.social · Reply to Jake Hamilton's post

@jakehamilton Oh, looks like I managed to push back getting into long enough for it to have become irrelevant again.

Jake Hamilton's avatar
Jake Hamilton

@jakehamilton@hachyderm.io

One year after the community started falling apart, what has the new steering committee done?

(This is not a dig, I am actually asking for people to link accomplishments by the steering committee)

Erethon's avatar
Erethon

@erethon@libretooth.gr

A friend asked me some questions about and . So, naturally, I wrote a blog post with notes I wished I had access to when I first started using NixOS.

blog.erethon.com/blog/2025/02/

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'services.wpaperd'. This replaces the existing module, 'programs.wpaperd', and adds a systemd service to ensure its execution.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.jqp'. A TUI playground for experimenting with `jq`.

Erethon's avatar
Erethon

@erethon@libretooth.gr

A friend asked me some questions about and . So, naturally, I wrote a blog post with notes I wished I had access to when I first started using NixOS.

blog.erethon.com/blog/2025/02/

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.earthly'. Earthly is a build configuration framework utilizing buildkit and Dockerfile-like syntax for fast builds and simplicity.

Aires's avatar
Aires

@aires@tiggi.es

:blobcatnotlike: Running `nixos-rebuild` on a Raspberry Pi
:blobcatthumbsup: Running `nixos-rebuild --target-host pihole` on my server

Sandro :nixos: :verified_gay:'s avatar
Sandro :nixos: :verified_gay:

@sandro@c3d2.social

You already know github.com/linyinfeng/angrr ? Gone are the stale result links and garbage collection roots.

Beady Belle Fanchannel's avatar
Beady Belle Fanchannel

@Profpatsch@mastodon.xyz

I just added a Roadmap to the repository. Have a look!

github.com/nix-community/lorri

I also added a BUSINESS_SUPPORT.md, since I do not have the free time to create all of these features and would like businesses to pay for them!

If your dev team uses lorri at work, please take a look!

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'services.wluma'. Wluma is a tool for Wayland compositors to automatically adjust screen brightness based on the screen contents and amount of ambient light around you.

Lobsters's avatar
Lobsters

@lobsters@mastodon.social

NixOS: the power of VM tests lobste.rs/s/9a3noh
bmcgee.ie/posts/2025/02/nixos-

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.swayimg'. swayimg is a fully customizable and lightweight image viewer for Wayland based display servers. See github.com/artemsen/swayimg for more.

Robert Hensing's avatar
Robert Hensing

@roberth@functional.cafe · Reply to Jake Hamilton's post

@jakehamilton This is part of why it's still experimental. Some of the bad decisions are not feasible to support indefinitely.

A clear benefit of doing more in "user space" is that you get to change your mind about how composition and extension work, without a backcompat nightmare or losing compatibility (and making reproducibility moot).

We're making good progress on fetching, although we did underestimate it at first.
2.27 will have Git LFS and proper submodules support.
Also a bit of locking: 2.26 had a significant fix for relative path flakes (in-repo flake inputs).
More locking, as well as composability and extension/configurability will come.

Aada is kitty :blobCat_verified_badge:'s avatar
Aada is kitty :blobCat_verified_badge:

@ada@catcatnya.com

If I have a nix devShell defined in a nix flake with a bunch of stuff that I use locally do something, is there a way for me to take this devShell and somehow yeet it into an OCI container so I can have this environment in our CI things as well?

raphiz's avatar
raphiz

@raphiz@hachyderm.io

Been playing around with numtide's blueprint and devshell to set up a dev environment for a application - turns out, it's pretty fun! 🎉

What started as just a simple ended up with pre-commit hooks, a basic gradle derivation and a module with tests.
This should be a good starting point for my next projects.

continues to be a rabbit hole I love falling into 🌀

github.com/raphiz/gradle-nix-e

raphiz's avatar
raphiz

@raphiz@hachyderm.io

Been playing around with numtide's blueprint and devshell to set up a dev environment for a application - turns out, it's pretty fun! 🎉

What started as just a simple ended up with pre-commit hooks, a basic gradle derivation and a module with tests.
This should be a good starting point for my next projects.

continues to be a rabbit hole I love falling into 🌀

github.com/raphiz/gradle-nix-e

Beady Belle Fanchannel's avatar
Beady Belle Fanchannel

@Profpatsch@mastodon.xyz

I just added a Roadmap to the repository. Have a look!

github.com/nix-community/lorri

I also added a BUSINESS_SUPPORT.md, since I do not have the free time to create all of these features and would like businesses to pay for them!

If your dev team uses lorri at work, please take a look!

Aada is kitty :blobCat_verified_badge:'s avatar
Aada is kitty :blobCat_verified_badge:

@ada@catcatnya.com

If I have a nix devShell defined in a nix flake with a bunch of stuff that I use locally do something, is there a way for me to take this devShell and somehow yeet it into an OCI container so I can have this environment in our CI things as well?

Lobsters's avatar
Lobsters

@lobsters@mastodon.social

Being a happy Nixer on a Mac lobste.rs/s/utonjg
paretosecurity.com/blog/being-

Sandro :nixos: :verified_gay:'s avatar
Sandro :nixos: :verified_gay:

@sandro@c3d2.social

You already know github.com/linyinfeng/angrr ? Gone are the stale result links and garbage collection roots.

flashfox's avatar
flashfox

@flashfox@infosec.exchange · Reply to domenkozar's post

@domenkozar
Tell you what: you publish a blog post on devenv.sh owning up to what happened, and I'll apologize for assuming malicious intent.

@Pol @neo @cafkafk @roberth @jfredett @oliverwiegers

ck

@ck@chaos.social · Reply to hexa-'s post

@hexa @soupglasses There is a discussion around that on discourse if you're interested

discourse.nixos.org/t/should-c

Personally, I find the situation quite bizarre, it kind of completely conflicts with my believe on how a FOSS space should function.

Lobsters's avatar
Lobsters

@lobsters@mastodon.social

Devenv telemetry warning via @crmsnbleyd lobste.rs/s/cvxhqu
chaos.social/@hexa/11400906974

flashfox's avatar
flashfox

@flashfox@infosec.exchange · Reply to Robert Hensing's post

@roberth @oliverwiegers @jfredett @cafkafk So looks like the opt-out is not as out as you might have though...

discourse.nixos.org/t/should-c

Is it to early to call ?

flashfox's avatar
flashfox

@flashfox@infosec.exchange · Reply to Robert Hensing's post

@roberth @oliverwiegers @jfredett @cafkafk So looks like the opt-out is not as out as you might have though...

discourse.nixos.org/t/should-c

Is it to early to call ?

Nyx Phoenix (new)'s avatar
Nyx Phoenix (new)

@traumaphoenix@treehouse.systems

is clearly the superior implementation because it has infinity more meows than : sourcegraph.com/search?q=conte

sourcegraph query, sidebar, by repository: lix-project/lix: 172 meows

CPP Nix is not here despite being in the query
ALT text detailssourcegraph query, sidebar, by repository: lix-project/lix: 172 meows CPP Nix is not here despite being in the query
decafkafk's avatar
decafkafk

@cafkafk@catgirl.farm

Domen, creator of devenv, recently added telemetry to his devenv thing, as part of adding AI to the product, and when nixpkgs contributors removed the telemetry, he reverted the change, with a self merge, without a fucking review even.

https://github.com/NixOS/nixpkgs/pull/381981

This is a clear conflict of interest. We need to stop this from happening in the NixOS organization, corpos need to have some respect for users.

Discussion thread: https://discourse.nixos.org/t/should-commercial-actors-ship-telemetry-in-nixpkgs/60279/8

#nix #nixos #nixpkgs

decafkafk's avatar
decafkafk

@cafkafk@catgirl.farm

Domen, creator of devenv, recently added telemetry to his devenv thing, as part of adding AI to the product, and when nixpkgs contributors removed the telemetry, he reverted the change, with a self merge, without a fucking review even.

https://github.com/NixOS/nixpkgs/pull/381981

This is a clear conflict of interest. We need to stop this from happening in the NixOS organization, corpos need to have some respect for users.

Discussion thread: https://discourse.nixos.org/t/should-commercial-actors-ship-telemetry-in-nixpkgs/60279/8

#nix #nixos #nixpkgs

flashfox's avatar
flashfox

@flashfox@infosec.exchange · Reply to flashfox's post

@jfredett @oliverwiegers .... and reverted by the author, who apparently has commit rights and does not seem to agree with community PR workflow.

So we now have commercial actors in who can just push their own commercial agenda be decree.

isabel's avatar
isabel

@isabel@akko.isabelroses.com

I wrote a longer blog then my usual about replacing `lib.nixosSystem` with my own builder.

https://isabelroses.com/blog/custom-lib-nixossystem-11

#nix #nixos
Aires's avatar
Aires

@aires@tiggi.es

:blobcatnotlike: Running `nixos-rebuild` on a Raspberry Pi
:blobcatthumbsup: Running `nixos-rebuild --target-host pihole` on my server

Solinvictus :vm:'s avatar
Solinvictus :vm:

@dminca@mastodontech.de

ffs, here we go again ... goddamn it @nixos_org why can't we just have a smooth transition :blobcatfacepalm:

flashfox's avatar
flashfox

@flashfox@infosec.exchange · Reply to Joe 'Oz' Fredette's post

@jfredett @oliverwiegers

At least in the telemetry seems to be of by default now

github.com/NixOS/nixpkgs/pull/

flashfox's avatar
flashfox

@flashfox@infosec.exchange

now collects "anonymous" data to train their "AI"

devenv.sh/blog/2025/02/13/deve

Lobsters's avatar
Lobsters

@lobsters@mastodon.social

devenv 1.4: Generating Nix Developer Environments Using AI lobste.rs/s/bfvovo
devenv.sh/blog/2025/02/13/deve

Nyx Phoenix (new)'s avatar
Nyx Phoenix (new)

@traumaphoenix@treehouse.systems

is clearly the superior implementation because it has infinity more meows than : sourcegraph.com/search?q=conte

sourcegraph query, sidebar, by repository: lix-project/lix: 172 meows

CPP Nix is not here despite being in the query
ALT text detailssourcegraph query, sidebar, by repository: lix-project/lix: 172 meows CPP Nix is not here despite being in the query
Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.git-worktree-switcher'. git-worktree-switcher allows you to quickly switch git worktrees. It includes shell completions for Bash, Fish and Zsh. See github.com/mateusauler/git-wor for more.

Lobsters's avatar
Lobsters

@lobsters@mastodon.social

Persistent packages on Steam Deck using Nix lobste.rs/s/vqprux
chrastecky.dev/gaming/persiste

Lobsters's avatar
Lobsters

@lobsters@mastodon.social

NixOS and Actually Portable Executables lobste.rs/s/oitgiq
jackkelly.name/blog/archives/2

Lobsters's avatar
Lobsters

@lobsters@mastodon.social

NixOS and Actually Portable Executables lobste.rs/s/oitgiq
jackkelly.name/blog/archives/2

Crystal's avatar
Crystal

@crystallord@pony.social

Another NixOS blogpost! This one about deploy-rs and deploying remotely!

after this one, I'm taking a brief break on this series while I figure out what to do with my machines. gonna focus on art n "cool stuff"

crystalwobsite.gay/posts/2025-

Crystal's avatar
Crystal

@crystallord@pony.social

Another NixOS blogpost! This one about deploy-rs and deploying remotely!

after this one, I'm taking a brief break on this series while I figure out what to do with my machines. gonna focus on art n "cool stuff"

crystalwobsite.gay/posts/2025-

isabel's avatar
isabel

@isabel@akko.isabelroses.com

I wrote a longer blog then my usual about replacing `lib.nixosSystem` with my own builder.

https://isabelroses.com/blog/custom-lib-nixossystem-11

#nix #nixos
Zack Weinberg's avatar
Zack Weinberg

@zwol@hackers.town

I have two fairly basic questions about and that I have been unable to find any answer for that makes any sense to me. Anyone who can offer an explanation, I'd appreciate it.

My background is that I understand the basic structure of store-based Unixes, but I don't have a lot of experience with them, and I understand the Nix language only just well enough to get myself in trouble.

(questions in follow-ups, please reply directly to the question you're answering.)

isabel's avatar
isabel

@isabel@akko.isabelroses.com

I wrote a longer blog then my usual about replacing `lib.nixosSystem` with my own builder.

https://isabelroses.com/blog/custom-lib-nixossystem-11

#nix #nixos
Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

All 'programs.<PROGRAM>.enable<SHELL>Integration' values now default to the new 'home.shell.enable<SHELL>Integration' options, which inherit from the new the 'home.shell.enableShellIntegration' option. The following inconsistent default values change from 'false' to 'true': - programs.zellij.enableBashIntegration - programs.zellij.enableFishIntegration - programs.zellij.enableZshIntegration

Lobsters's avatar
Lobsters

@lobsters@mastodon.social

Three Years of Ephemeral NixOS: My Experience Resetting Root on Every Boot lobste.rs/s/ejwdhq
b.tuxes.uk/three-years-of-ephe

Determinate Systems, Inc.'s avatar
Determinate Systems, Inc.

@determinatesystems@hachyderm.io

🌍🚀 Planet Nix 2025 is happening March 6-7 in Pasadena! It's the biggest Nix-focused conference in North America and co-located with SCaLE. Tickets are only $85 for both events! 🎟️

If you care about Nix, this is the place to be. Register now and meet us there: 🔗 socallinuxexpo.org/scale/22x

qeef's avatar
qeef

@qeef@en.osm.town

Warning! Nix language!

qeef.srht.site/post/warning-ni

I wrote a piece. But I am too tired to read it after myself. Sorry.

Determinate Systems, Inc.'s avatar
Determinate Systems, Inc.

@determinatesystems@hachyderm.io

🌍🚀 Planet Nix 2025 is happening March 6-7 in Pasadena! It's the biggest Nix-focused conference in North America and co-located with SCaLE. Tickets are only $85 for both events! 🎟️

If you care about Nix, this is the place to be. Register now and meet us there: 🔗 socallinuxexpo.org/scale/22x

Robert Hensing's avatar
Robert Hensing

@roberth@functional.cafe

🎙️ Learn about the latest Nix releases up to 2.26 on the Full Time Nix podcast with host mightyiam, edolstra, tomberek and me
fulltimenix.com/episodes/nix-2
@nixos_org

Yann Büchau :nixos:'s avatar
Yann Büchau :nixos:

@nobodyinperson@fosstodon.org

:nixos: and do HaaS: Hard-coding as a Service.

You tell it what you want your system to look like and it hard-codes the sh*t out of it.

This comes with all the benefits of hard-coding: Your environment, your PATH, manually installed software, etc. don't interfere with your base system at all. Every program and service sees exactly the dependencies and configurations they were given. The amount of power this gives for servers/embedded/purpose-built machines cannot be overstated!

secana 🦀's avatar
secana 🦀

@secana@mastodon.social

Hey users. Is there a way to add a font in a flake.nix only for the "nix develop" or is that generally impossible as fonts are always system wide?

Lionhairdino's avatar
Lionhairdino

@lionhairdino@mastodon.social

NixOS.kr 디스코드 서버가 막 생겼습니다.
discord.gg/AMp9VYR44J

Lobsters's avatar
Lobsters

@lobsters@mastodon.social

Nix: string interpolation of directories gone awry lobste.rs/s/e7clsc
fzakaria.com/2025/02/02/nix-st

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'services.linux-wallpaperengine'. Reproduce the background functionality of Wallpaper Engine on Linux systems.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.aerospace'. AeroSpace is an i3-like tiling window manager for macOS. See github.com/nikitabobko/AeroSpa for more.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

The Firefox module now provides a 'programs.firefox.profiles.<name>.preConfig' option. It allows extra preferences to be added to 'user.js' before the options specified in 'programs.firefox.profiles.<name>.settings', so that they can be overwritten.

Lobsters's avatar
Lobsters

@lobsters@mastodon.social

Is NixOS truly reproducible? lobste.rs/s/j9iugq
luj.fr/blog/is-nixos-truly-rep

Lobsters's avatar
Lobsters

@lobsters@mastodon.social

Guix User and Contributor Survey 2024: The Results (part 2) lobste.rs/s/cgvvhc
guix.gnu.org/en/blog/2025/guix

Yann Büchau :nixos:'s avatar
Yann Büchau :nixos:

@nobodyinperson@fosstodon.org

Oh boy is working with strings terrible in :nixos: 😩

I need a function that escapes a string for use as a systemd service name. Especially the asterisk * is a problem, which makes building system-units fail. But nix has no regex-replace 😩 And I can't even find how to iterate over the characters in a string to do it semi-manually...

EDIT: Using an increasing number now instead of that problematic field, but still...

seth 🍃's avatar
seth 🍃

@getchoo@wetdry.world

got to get rid of basically all the inputs in catppuccin/nix's flake today thanks to a new 2.26 feature. can't wait to see it in nixpkgs :)

github.com/catppuccin/nix/pull

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

Yazi's fish shell integration wrapper now calls the 'yazi' executable directly, ignoring any shell aliases with the same name. Your configuration may break if you rely on the wrapper calling a 'yazi' alias.

Heals :heart_nb:'s avatar
Heals :heart_nb:

@heals@indiepocalypse.social

Hello @lix_project !

I'm currently running Lix on my mac based on the original determinate systems installer and I was wondering:

Is there a way to switch from Determinate to Lix's own installer?

I'm using a system flake with nix-darwin and home-manager so I don't thinks it's trivial to undo what the determinate installer did (so I could do a clean lix in taller based setup)

Lobsters's avatar
Lobsters

@lobsters@mastodon.social

Encrypted NixOS home server with passwordless reboot lobste.rs/s/hktw8t
log.pfad.fr/2025/fde-nixos-col

Lobsters's avatar
Lobsters

@lobsters@mastodon.social

Announcing Lix 2.92 "Bombe glacée" lobste.rs/s/qyd4pk
lix.systems/blog/2025-01-18-li

seth 🍃's avatar
seth 🍃

@getchoo@wetdry.world

's new subflake support is awesome

github.com/NixOS/nix/pull/10089

Ariel (L3 nightmare ed.)'s avatar
Ariel (L3 nightmare ed.)

@arichtman@eigenmagic.net

I wonder if I could configure my Nix binary cache to do on-demand cross-compilation of packages so this poor ancient laptop doesn't cook itself every time I rebuild....

Lobsters's avatar
Lobsters

@lobsters@mastodon.social

Bypassing disk encryption on systems with automatic TPM2 unlock lobste.rs/s/kllhgb
oddlama.org/blog/bypassing-dis

Lobsters's avatar
Lobsters

@lobsters@mastodon.social

Guix User and Contributor Survey 2024: The Results (part 1) lobste.rs/s/ydrrgk
guix.gnu.org/en/blog/2025/guix

Lobsters's avatar
Lobsters

@lobsters@mastodon.social

Packaging the Multipass Flutter GUI for NixOS lobste.rs/s/nidkrn
jnsgr.uk/2025/01/packaging-mul

Lobsters's avatar
Lobsters

@lobsters@mastodon.social

Laptop archeology or how to install NixOS 24.11 on a 25 year old laptop via @picnoir lobste.rs/s/fllbl0
blog.mynacol.xyz/en/nixos-on-f

Lobsters's avatar
Lobsters

@lobsters@mastodon.social

Nix - Death by a thousand cuts via @wezm lobste.rs/s/viyhqi
dgt.is/blog/2025-01-10-nix-dea

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'wayland.windowManager.wayfire'. Wayfire is a 3D Wayland compositor, inspired by Compiz and based on wlroots. It aims to create a customizable, extendable and lightweight environment without sacrificing its appearance. This Home Manager module allows you to configure both wayfire itself, as well as wf-shell.

Lobsters's avatar
Lobsters

@lobsters@mastodon.social

Installing NixOS with the latest kernel lobste.rs/s/6jebmo
silky.github.io/posts/nixos-la

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.ghostty'. Ghostty is a terminal emulator that differentiates itself by being fast, feature-rich, and native. While there are many excellent terminal emulators available, they all force you to choose between speed, features, or native UIs. Ghostty provides all three.

Lobsters's avatar
Lobsters

@lobsters@mastodon.social

sixos: a nix os without systemd lobste.rs/s/kgqpqy
media.ccc.de/v/38c3-sixos-a-ni

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

The 'systemd.user.startServices' option now defaults to 'true', meaning that services will automatically be restarted as needed when activating a configuration. Further, the "legacy" alternative has been removed and will now result in an evaluation error if used. The "suggest" alternative will remain for a while longer but may also be deprecated for removal in the future.

Lobsters's avatar
Lobsters

@lobsters@mastodon.social

Migrating Immich from Docker to NixOS lobste.rs/s/ebbded
diogotc.com/blog/immich-docker

Krutonium's avatar
Krutonium

@krutonium@treehouse.systems

I love Nix because replace #!/bin/bash at the start of a shell script with

#!/usr/bin/env nix-shell
#! nix-shell -i bash
#! nix-shell -p bash jdk21

And now that script has guaranteed dependencies met. And you can use any interpreter you want, be it bash, python, or whatever.

Lobsters's avatar
Lobsters

@lobsters@mastodon.social

From Nix to Eos lobste.rs/s/3f9jfg
nrd.sh/blog/nix-to-eos/

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange

I'll be speaking at the Nix and NixOS devroom at @fosdem next year!

Go in the Nix ecosystem: vulnerability scanning and experiments towards a next-gen builder
fosdem.org/2025/schedule/event

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.cavalier'. Cavalier is a GUI wrapper around the Cava audio visualizer.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.pay-respects'. Pay Respects is a shell command suggestions tool and command-not-found and thefuck replacement written in Rust.

Lobsters's avatar
Lobsters

@lobsters@mastodon.social

Nix is a build system lobste.rs/s/pt1p9w
chriswarbo.net/blog/2024-05-24

Lobsters's avatar
Lobsters

@lobsters@mastodon.social

Home Manager: dotfiles management lobste.rs/s/r5khln
gvolpe.com/blog/home-manager-d

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange

I recently contributed a patch to erofs-utils which has now been released with v1.8.3. It introduces a --hard-dereference option that converts hardlinks to separate inodes, similar to the equally-named flag in tar. It can be used to ensure reproducible image builds on systems where similar files from the root FS might be hard-linked against each other for optimization reasons -- like in the Nix store.
git.kernel.org/pub/scm/linux/k

Grimmauld's avatar
Grimmauld

@grimmauld@mastodon.grimmauld.de

After yesterday making a list of things that need doing on discourse (discourse.nixos.org/t/apparmor), i started working on tooling for

I managed to use the nixpkgs package as a basis and clean up all the cruft apparmor has accumulated in the past 13 years since it was added.
Highlights:
- ALL tests of ALL components pass!
- strictDeps is enabled
- made it all more readable and maintainable

I developed this using flakes in my fork:
gitlab.com/Grimmauld/apparmor/

I call this progress :)

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

The module 'programs.nushell' can now manage the Nushell plugin registry with the option 'programs.nushell.plugins'.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

isync/mbsync 1.5.0 has changed several things. isync gained support for using $XDG_CONFIG_HOME, and now places its config file in '$XDG_CONFIG_HOME/isyncrc'. isync changed the configuration options SSLType and SSLVersion to TLSType and TLSVersion respectively. All instances of 'accounts.email.accounts.<account-name>.mbsync.extraConfig.account' that use 'SSLType' or 'SSLVersion' should be replaced with 'TLSType' or 'TLSVersion', respectively. TLSType options are unchanged. TLSVersions has a new syntax, requiring a change to the Nix syntax. Old Syntax: SSLVersions = [ "TLSv1.3" "TLSv1.2" ]; New Syntax: TLSVersions = [ "+1.3" "+1.2" "-1.1" ]; NOTE: The minus symbol means to NOT use that particular TLS version.

Yvan Sraka's avatar
Yvan Sraka

@yvan@functional.cafe · Reply to Yvan Sraka's post

We are hosting the 8th iteration of our Brussels / / User Group Meetup next Monday, December 9th, at @HSBXL! brunix.glitch.me

Aires's avatar
Aires

@aires@tiggi.es

So I just finished converting my config to Snowfall, and nothing about my system changed, which is as good of a review as I can give for a Nix framework. Shoutout to @jakehamilton for keeping it going (and for hosting your config online so I can ~~steal from~~ reference it 😛)

snowfall.org/guides/lib/quicks

Lix Project's avatar
Lix Project

@lix_project@chaos.social

did you know: you can use the experimental `nix` CLI of CppNix/Lix on non-flakes projects?

nix-build -A myAttr.foo => nix build -f . myAttr.foo
nix-shell -A myAttr.foo => nix develop -f shell.nix myAttr.foo
nix-instantiate --eval foo.nix -A myAttr.foo => nix eval -f foo.nix myAttr.foo

Dominik's avatar
Dominik

@chrastecky@phpc.social

This is one of the most useful tools I have built:

history.nix-packages.com

Working with multiple versions of whatever software you need for your legacy app is a breeze.

You want some specific version of or whatever else without it polluting your system? You're just one `nix-shell` command away!

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new option 'programs.starship.enableInteractive' is available for the Fish shell that only enables starship if the shell is interactive. Some plugins require this to be set to 'false' to function correctly.

opdavies's avatar
opdavies

@opdavies@mastodon.social

I use Nix for all my application development projects.

oliverdavies.uk/daily/2024/11/

piegames's avatar
piegames

@piegames@flausch.social · Reply to Zufallsshirt's post

@zufallsshirt … by the community

Laauurraaa's avatar
Laauurraaa

@Laauurraaa@mas.to · Reply to Laauurraaa's post

Here, a development environment that installs

1. Bun
2. Playwright
3. Chrome, firefox and a generic webkit browser

And sets it up correctly, in an isolated environment? With a nice "hey, this is how you use this development environment" comment as a cherry on top?

The entire Nix file is 46 lines of code. Most of it boilerplate.

Laauurraaa's avatar
Laauurraaa

@Laauurraaa@mas.to

I love Nix so much, because you can just super easily contain an entire development environment in one file. This stuff is genuinely

- More flexible than docker
- Easier than docker
- More reliable than docker
- Faster than docker
- More powerful than docker

Why isn't literally everyone using Nix?

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.kubecolor'. Kubecolor is a kubectl wrapper used to add colors to your kubectl output.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.nix-your-shell'. nix-your-shell is a wrapper for `nix develop` or `nix-shell` to retain the same shell inside the new environment.

kalipso's avatar
kalipso

@kalipso@chaos.social · Reply to NixOS's post

@nixos_org Hail , all hail

0x17 :cch:'s avatar
0x17 :cch:

@0x17@corteximplant.com

TIL: There is a based static site generator and I'm may be hooked :cyberheart_pink:

github.com/static-nix/styx

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange

call for participation ends in 3 days, 15 hours! Still plenty of time to hand in a proposal for the and devroom!

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange

After some months of work, I got the legacy `buildGoPackage` builder removed from . Most packages using the legacy builder were migrated to `buildGoModule`. Now we have less maintenance burden and thus the chance to work on something new!
github.com/NixOS/nixpkgs/issue

Check out the updated Go section in the nixpkgs manual: nixos.org/manual/nixpkgs/unsta

C.B.Leslie's avatar
C.B.Leslie

@cbleslie@hachyderm.io

Nix Gang,

github.com/Ookiiboy/ignoreBoy

I’ve had a really good time with managing development environments using devShells, so I created a nix shell library for generating .gitignore files from github's own templates. It comes with sane defaults as well.

Please take a peek. Maybe you'll love this tool as much as I love'd makin' it!

benwebb's avatar
benwebb

@benjaminedwardwebb@mstdn.social

Keep being surprised that I can't `coerce an integer to a string` in nix. I wonder if there's a good reason.

Nix & Rust Rhein-Neckar's avatar
Nix & Rust Rhein-Neckar

@NixRust@rheinneckar.social

All talks of our last :nixos: and :rust: meetup in are finally public. As always, you get to pick where you watch them.

PeerTube: tube.tchncs.de/w/p/akbB31cfbmV

YouTube: youtube.com/watch?v=97dzS-lUCi

alugha: alugha.com/videos/05bb8fb0-aa6

Arik Grahl's avatar
Arik Grahl

@arikgrahl@chaos.social

I have just submitted my ​s for + Europe 2025 🎉

The first submission deals about defining manifests with Kubenix by leveraging modules.
The second submission discusses as a declarative and reproducible basis for .

I am curious how the cloud native ecosystem will receive as a complementing technology.
I would love to see more synergy effects here.

Wish me luck 🤞

Nix & Rust Rhein-Neckar's avatar
Nix & Rust Rhein-Neckar

@NixRust@rheinneckar.social

Celebrating our first anniversary, our next meetup is scheduled for Wednesday, December 18 at the Mathematikon in . For the first time, we are separating our Nix and Rust meetup, so be prepared for another announcement of our Rust anniversary meetup.

No matter if you use :nixos: or :lix_ice: on or , everyone is welcome to join us.

Pizza and drinks will be provided. If you plan to join us, please register for the event here:

rheinneckar.events/events/2f36

C.B.Leslie's avatar
C.B.Leslie

@cbleslie@hachyderm.io

Nix Gang,

I have released an opinionated Nix Flake template for Deno.

github.com/Ookiiboy/templates

Features include:
- direnv file - for you cool kids
- Pretty good .gitignore
- Built-in git hooks; no setup required, runs deno tooling on commit.
- Linked `.editorconfig`
- Nix formatter already setup

Should be fairly turnkey.

P.S.:
@deno_land team, if you're reading this, I have room for Dinosaur stickers on my laptop.

Zach Mitchell's avatar
Zach Mitchell

@zmitchell@hachyderm.io

Just a reminder that Planet is taking place on March 6-7th in Pasadena. The CFP is open and we'd love for you to submit a talk or workshop!

planetnix.com/

Robert Hensing's avatar
Robert Hensing

@roberth@functional.cafe

On our way to meetup with @koen and @wheeze_NL.

A wintery highway, slightly snow covered trees on either side, autumn leaves still showing through, a beautiful sight
ALT text detailsA wintery highway, slightly snow covered trees on either side, autumn leaves still showing through, a beautiful sight
Ellyse's avatar
Ellyse

@ellyse@ohai.social

Advent of Code with Nix (2019 day 2 part 2) - didn’t realise there was a part 2, so did it today!
This time we get to brute force a solution and shove it into the elf computer!
Click here for video: youtu.be/TBLH9i8qZj8

Nix & Rust Rhein-Neckar's avatar
Nix & Rust Rhein-Neckar

@NixRust@rheinneckar.social

We're finally planning our next :nixos: :lix_ice: meetup in , which will be set between the 12th and 19th December, celebrating our meetup's anniversay! 🎂 To make the schedule suitable for as many former participants as possible, we've set up a poll. We'll open the doors at 18:00 and start talks at 19:00. There will be Pizza for celebration. 🍕

cloud.korz.tech/apps/polls/s/F

Jeezy's avatar
Jeezy

@jeezy@lgug2z.com

A year on, this remains the single most most viewed technical post I've ever written

It provides a detailed overview of the most popular approaches to handling in configurations, complete with examples

It's still as relevant today as it was last year!

lgug2z.com/articles/handling-s

futurile

@futurile@mastodon.social

What should we call a group of Guix users?

One person is clearly a, 'Guix user', but what is a group? It's not a flock, and it can't be a Herd obviously! And anyway, and users are forging their own own path! In fact any user is already a pioneer. So what do you call a group of Guix users?

@luis_felipe reminded me there's no currently accepted one!

OptionVoters
Guix denizens1 (20%)
Guixers4 (80%)
Guixellators0 (0%)
Guixelati0 (0%)
Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange

Incremental builds in Nix and garnix

"[Garnix] approach is to make the derivations you want cached to output their cache (for instance in a separate output), and then to import a previous version of that derivation, and use the cached output from that version in the new one."

garnix.io/blog/incremental-bui

Ellyse's avatar
Ellyse

@ellyse@ohai.social

New Let’s Learn Together video on using Nix to package existing software but with dependencies missing. This one was fun! click link here:
youtu.be/4Z78L8igmlk

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange

NixOS Thaiger Sprint 2025 announced! A week of intense hacking on Nix in Thailand.
thaigersprint.org/

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange

TIL: `git archive` is used by GitHub and other forges to create an archive of a repo to download. git can do unexpected thing when creating such archive, like variable substitution using the `export-subst` feature. So even if a commit is immutable, you can still download different content if a ref or tag changed.

git-scm.com/docs/git-archive/2

Example: github.com/smallstep/cli/blob/

That's a real problem in context of reproducible builds (or just source-pinning in general).

Determinate Systems, Inc.'s avatar
Determinate Systems, Inc.

@determinatesystems@hachyderm.io

If you're using directly from the Nix upstream: skip the 2.25.0 release, or adjust your Nix expressions. Users of flakehub.com/flake/determinate are unaffected.

See: github.com/NixOS/nix/issues/11

bashfulrobot / Dustin Krysak's avatar
bashfulrobot / Dustin Krysak

@bashfulrobot@hachyderm.io

Just sayin. could take a lesson from on meaningful error messages.

Ellyse's avatar
Ellyse

@ellyse@ohai.social

Hi all! OMG Last section of the Nix language tutorial, finally we finished! I wonder if this means I can put Nix on my LinkedIn profile yet?

Today we cover derivations and review some example Nix code
youtu.be/527eHLyybQE

Neo's avatar
Neo

@neo@social.hacktheplanet.be · Reply to Neo's post

I made a proof of concept “works out of the box”, “batteries included” Linux based desktop OS, built using and but with flatpak support for easy installation of user applications and no knowledge of underlying Nix base OS required.
It’s simply called “deskOS”, anyone who’s interested can check it out at nixup.io/

I even had a EU edition in mind: files.nixup.io/desk-os/release

Paco Velobs's avatar
Paco Velobs

@PacoVelobs@mamot.fr

Hey and people 👋

I was wondering if something like mkYarnPackage already exists for 👀

I'm supposed to demonstrate the power of and on a + project at work.

I got something working with but that's not what they asked for 🤷

Jost :thisisfine: 🔥's avatar
Jost :thisisfine: 🔥

@alemann@chaos.social

If people near are interested in or , there is Nix Meetup planned for next Monday @netz39

Mon 11.11. - 7pm / 19 Uhr

Sandro :nixos: :verified_gay:'s avatar
Sandro :nixos: :verified_gay:

@sandro@c3d2.social

Our search deployment at search.nüschtos.de got quite a few new in the last days including nix-darwin, authentik-nix, crowdsec, lanzaboote, microvm.nix, nixos-hardware, nixos-wsl, simple-nixos-mailserver, sops-nix and tsnsrv.

What other popular flakes are we missing?

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange

NixOS Steering Committee Election results are out!

Congrats to @winter @roberth @fpletz and the other (fediverse-less) winners.

github.com/NixOS/SC-election-2

Interesting the turnout is only (?) 56%, even after all the controversy of the last year.

💩's avatar
💩

@flokli@im-in.space

Gave a new update and architectural overview on during : youtu.be/bm1jcTo8uYw

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'services.podman'. Podman is a daemonless container engine that lets you manage containers, pods, and images. This Home Manager module allows you to define containers that will run as systemd services.

Zach Mitchell's avatar
Zach Mitchell

@zmitchell@hachyderm.io

We're doing another conference in North America this year called Planet Nix! It's co-located with SCaLE in Pasadena on March 6-7th. Two tracks over two days, chocked full of Nix goodness. Submit your talk today!

discourse.nixos.org/t/announci

dereulenspiegel's avatar
dereulenspiegel

@dereulenspiegel@chaos.social

nix, NixOS

Is there currently no official part of the nix lib which allows me to do calculations on IPv6 networks? Stuff like "give me the 8th address in this network". For a system which revolves very much around predictable configuration that looks like an oversight.
Also implementing this in yourself seems to be awful.

Determinate Systems, Inc.'s avatar
Determinate Systems, Inc.

@determinatesystems@hachyderm.io

The future of software is : the vision of , and our effort to unabashedly evolve the Nix ecosystem.

New on the blog: buff.ly/3UnKxvO

Determinate Systems, Inc.'s avatar
Determinate Systems, Inc.

@determinatesystems@hachyderm.io

2.24.10 is currently phasing in through all Determinate distribution channels. This release improves the security of Nix when using the optional, stricter sandbox on macOS.

An upstream advisory is not yet available.

decafkafk's avatar
decafkafk

@cafkafk@catgirl.farm

Just released nix-weather, a #rust cli-tool to check how many of your NixOS system’s build dependencies are in a binary cache.


$ nix-weather -n myhost -c /etc/config/
Found Nix Requisites in 8 seconds
Checked 2789 packages in 1 seconds
Found 2676/2789 (95.95%) in cache

This is useful to e.g. “check the weather” before going for an update. If the dependencies you want still haven’t been cached, it can be useful to know you can postpone an update to a later day when the weather is better on the cache.

Feel free to try it out from the GitHub mirror (it’s likely faster than my forgejo instance, and I’d appreciate saving the bandwidth).

https://github.com/cafkafk/nix-weather/releases/tag/v0.0.2

#nix #nixos

decafkafk's avatar
decafkafk

@cafkafk@catgirl.farm

babe wake up, I wrote about Helsing’s presence at Eurorust, winning their drone hackathon, and whether or not they’re just an “European Anduril” or a “good” defense company.

I also talk a bit about what this would mean for a Nix sponsorship policy, and what I think the Rust community can do.

And what’s the deal with Jon Gjengset suddenly working there?

https://cafkafk.dev/p/eurorust-2024-helsing/

#eurorust #eurorust2024 #nix #nixos

C.B.Leslie's avatar
C.B.Leslie

@cbleslie@hachyderm.io

` nix-store --gc --print-roots | grep "result"`, I love you.

Jake Hamilton's avatar
Jake Hamilton

@jakehamilton@hachyderm.io

Hi everyone, I am now looking for full-time work! If you have a remote Software Engineer position available and work with web tech ( / / / / , etc), (or / ), , or / then please reach out! I love building tools to solve problems and delight users.

For examples of my previous work, links to my projects, and my resume, please see my website: jakehamilton.dev

Boosts very much appreciated!

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange

The Nix/NixOS devroom at @fosdem was accepted, and the CfP is open! I'm really amazed to be part of the organization team this year.
Talks can be submitted until 2024-11-30.

discourse.nixos.org/t/nix-and-

Aires's avatar
Aires

@aires@tiggi.es

Running into a nixos-rebuild problem. If I run `nixos-rebuild switch --build-host [my server]`, it builds, but I get the error "sudo: a terminal is required to read the password". Running `nixos-rebuild build` on its own does work, and it doesn't ask for a password since my user's trusted. It's just the final step of switching/booting into the build that fails becaus of sudo.

I did a bunch of searching and tried a dozen different fixes, but none of them worked. The only thing that worked was creating a nixos-rebuild wrapper script that basically splits a single remote switch/boot into two separate commands: a remote build, and then a local switch/boot. Basically it looks for a "--build-host" flag, and if it finds one, it runs `nixos-rebuild build --build-host [blah]`, then runs `nixos-rebuild switch`. Here's what it looks like: github.com/8bitbuddhist/nix-co

I feel like there has to be a better way though. Anyone else run into this issue and find a less convoluted solution?

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'nixGL'. NixGL solve the "OpenGL" problem with nix. The 'nixGL' module provides integration of NixGL into Home Manager. See the "GPU on non-NixOS systems" section in the Home Manager mantual for more.

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange

I just voted in the Steering Committee Election 📥
If you are registered as voter but haven't yet, you can do so until Sun, 2024-11-03.

Paul Meyer's avatar
Paul Meyer

@katexochen@infosec.exchange

Nice, status update from nixbuild.net! blog.nixbuild.net/posts/2024-1
Always happy to see those smaller Nix companies thrive.

To me docs.nixbuild.net/remote-build is still one of the best introductions to nix remote builds out there.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.nh'. nh is yet another Nix CLI helper. Adding functionality on top of the existing solutions, like nixos-rebuild, home-manager cli or nix itself.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.cmus'. cmus is a small, fast and powerful console music player.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.zed-editor'. Zed is a fast text editor for macOS and Linux. See zed.dev for more.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.vifm'. Vifm is a curses based Vim-like file manager extended with some useful ideas from mutt.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'services.snixembed'. snixembed proxies StatusNotifierItems as XEmbedded systemtray-spec icons. This is useful for some tools in some environments, e.g., Safe Eyes in i3, lxde or mate.

Jake Hamilton's avatar
Jake Hamilton

@jakehamilton@hachyderm.io

Portable Submodules for / /

kilo.bytesize.xyz/portable-sub

Johnny's avatar
Johnny

@johnny@chaos.social

Explaining the store to people

Picture of a children's toy bucket with multiple different shaped holes cut in the top (square, circle, triangle, rectangle, arch). They are labelled /etc, /opt, /usr/lib, /usr/bin. The square is labelled /nix/store. A hand can be seen putting a cylinder labelled "literally anything" in the square hole
ALT text detailsPicture of a children's toy bucket with multiple different shaped holes cut in the top (square, circle, triangle, rectangle, arch). They are labelled /etc, /opt, /usr/lib, /usr/bin. The square is labelled /nix/store. A hand can be seen putting a cylinder labelled "literally anything" in the square hole
seth 🍃's avatar
seth 🍃

@getchoo@wetdry.world

I've been nominated for the first NixOS Steering Committee!

You can read my candidate form here, where I explain some of my goals, previous work, and motivation in running for this position. I also encourage everyone to check the issues of this repository, which is filled with some great questions from the community and responses by myself and my fellow candidates

I will be continuing this thread by highlighting some of the questions I find most important for this election 🧵

github.com/NixOS/SC-election-2

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

The swayidle module behavior has changed. Specifically, swayidle was previously always called with a `-w` flag. This flag is now moved to the default `services.swayidle.extraArgs` value to make it optional. Your configuration may break if you already set this option and also rely on the flag being automatically added. To resolve this, please add `-w` to your assignment of `services.swayidle.extraArgs`.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

The option 'programs.kitty.theme' has been deprecated, please use 'programs.kitty.themeFile' instead. The 'programs.kitty.themeFile' option expects the file name of a theme from `kitty-themes`, without the `.conf` suffix. See <github.com/kovidgoyal/kitty-th> for a list of themes.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.neovide'. Neovide is a simple, no-nonsense, cross-platform graphical user interface for Neovim (an aggressively refactored and updated Vim editor).

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'services.trayscale'. An unofficial GUI wrapper around the Tailscale CLI client.

Yvan Sraka's avatar
Yvan Sraka

@yvan@functional.cafe · Reply to Yvan Sraka's post

We are hosting the 7th iteration of our Brussels / / User Group Meetup next Monday, September 9th, at @HSBXL!

Charles Fulton's avatar
Charles Fulton

@mackensen@higheredweb.social

Switched my local development for Hexo from flakes to (still nix under the hood) and I'm happy with the result: blog.goodbyeplease.com/2024/08

Yvan Sraka's avatar
Yvan Sraka

@yvan@functional.cafe · Reply to Yvan Sraka's post

We are hosting the 6th iteration (I forgot to toot about the previous one) of our Brussels / / User Group Meetup next Monday, August 12th, at @HSBXL! (And yes, there will be free pizzas again! 🍕)

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'services.glance'. Glance is a self-hosted dashboard that puts all your feeds in one place. See github.com/glanceapp/glance for more.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

Yazi's shell integration wrappers have been renamed from 'ya' to 'yy'. A new option `programs.yazi.shellWrapperName` is also available that allows you to override this name.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'services.blanket'. Blanket is a program you can use to improve your focus and increase your productivity by listening to different sounds. See github.com/rafaelmardojai/blan for more.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

Multiple new options are available: - 'nix.nixPath' - 'nix.keepOldNixPath' - 'nix.channels'

Yvan Sraka's avatar
Yvan Sraka

@yvan@functional.cafe · Reply to Yvan Sraka's post

We do a 4th iteration of our Brussels / User Group Meetup, Monday 10th of June, at BeCentral again! brunix.glitch.me/

Joshua Wood's avatar
Joshua Wood

@wood@hachyderm.io

Got my first development environment (Jekyll website) running in NixOS on my Framework laptop using devenv. That makes this my first successful dev environment in nix. :) Nice work @domenkozar!

devenv.sh

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

Home Manager News Bot is now open source!
github.com/katexochen/hmnews-b

Raito Bezarius's avatar
Raito Bezarius

@raito@nixos.paris · Reply to Raito Bezarius's post

Finally, once you have all of that, you can enjoy a colmena to deploy an entire fleet of embedded systems with automatic recovery in case of failed deployments!

This idea can generalize to more than just an embedded system or a router.

With my folks at DGNum (a nonprofit doing weird shit), we also are working on managing on-the-shelf switches using... expressions and colmena... without modifying the operating system! 6/6

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.yambar'. Yambar is a lightweight and configurable status panel for X11 and Wayland, that goes to great lengths to be both CPU and battery efficient - polling is only done when absolutely necessary. See codeberg.org/dnkl/yambar for more.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'services.hyprpaper'. Hyprpaper is a blazing fast wallpaper utility for Hyprland with the ability to dynamically change wallpapers through sockets. It will work on all wlroots-based compositors, though. See github.com/hyprwm/hyprpaper for more.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.hyprlock'. Hyprland's simple, yet multi-threaded and GPU-accelerated screen locking utility. See github.com/hyprwm/hyprlock for more.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.fastfetch'. Fastfetch is a Neofetch-like tool for fetching system information and displaying them in a pretty way. See github.com/fastfetch-cli/fastf for more.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.gnome-shell'. GNOME Shell is the graphical shell of the GNOME desktop environment. It provides basic functions like launching applications and switching between windows, and is also a widget engine.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'services.hypridle'. Hypridle is a program that monitors user activity and runs commands when idle or active. See github.com/hyprwm/hypridle for more.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'services.conky'. Conky is a system monitor for X. Conky can display just about anything, either on your root desktop or in its own window. See conky.cc/ for more.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.freetube'. FreeTube is a YouTube client built around using YouTube more privately. You can enjoy your favorite content and creators without your habits being tracked. See freetubeapp.io/ for more.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'services.swaync'. SwayNotificationCenter is a simple notification daemon with a GTK GUI for notifications and the control center. See github.com/ErikReider/SwayNoti for more.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'services.psd'. Profile-sync-daemon (psd) is a tiny pseudo-daemon designed to manage your browser's profile in tmpfs and to periodically sync it back to your physical disc (HDD/SSD).

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'services.amberol'. Amberol is a music player with no delusions of grandeur. If you just want to play music available on your local system then Amberol is the music player you are looking for. See apps.gnome.org/Amberol/ for more.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.poetry'. Poetry is a tool that helps you manage Python project dependencies and packages. See python-poetry.org/ for more.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'services.remmina'.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.spotify-player'.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.tofi'.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.fd'.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.bun'.

Yvan Sraka's avatar
Yvan Sraka

@yvan@functional.cafe · Reply to Yvan Sraka's post

We’re doing a 2nd iteration of our / Meetup in tonight at @HSBXL :)

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'services.activitywatch'.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

'programs.rbw.pinentry' has been simplified to only accept 'null' or a package.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

'services.gpg-agent.pinentryFlavor' has been removed and replaced by 'services.gpg-agent.pinentryPackage'.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.joplin-desktop'.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.ranger'.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.zk'

Brian McKenna's avatar
Brian McKenna

@puffnfresh@mastodon.social

The start of native Windows support for is amazing: github.com/NixOS/nix/pull/8901 - still a huge amount of work to do: process management being the next big thing I see

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'wayland.windowManager.river'.

Yvan Sraka's avatar
Yvan Sraka

@yvan@functional.cafe

We're bootstrapping a recurring / meetup in on Monday, March 11. Hope to see you there! brunix.glitch.me

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.jetbrains-remote'

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'services.arrpc'

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'services.wob'.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.mise'. This module replaces 'programs.rtx', which has been removed.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'xdg.portal'.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.i3blocks'.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.bemenu'.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.sftpman'.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'services.osmscout-server'.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.gradle'.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.sapling'.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

Entries in wayland.windowManager.hyprland.settings.source are now placed at the start of the configuration file. If you relied on the previous placement of the 'source' entries, please set wayland.windowManager.hyprland.sourceFirst = false to keep the previous behaviour.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'services.signaturepdf'.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.ruff'.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.granted'.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.cava'.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'services.darkman'.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.thefuck'.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.zsh.zsh-abbr'

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.khard'.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.wpaperd'.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.awscli'.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.bacon'.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.rio'. Rio is a hardware-accelerated GPU terminal emulator powered by WebGPU.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.eza'.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.carapace'.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.yazi'.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.qcal'.

Home Manager News's avatar
Home Manager News

@hmnews@techhub.social

A new module is available: 'programs.pqiv'.

fasterthanlime 🌌's avatar
fasterthanlime 🌌

@fasterthanlime@hachyderm.io · Reply to fasterthanlime 🌌's post

I quietly dropped a 12-part series about + tonight ✨

One part will unlock each week, $10/mo sponsors get access to the whole thing on day one and can share any article with friends/colleagues, etc.

Enjoy!

fasterthanli.me/series/buildin

Ross A. Baker's avatar
Ross A. Baker

@ross@rossabaker.com

Post-disaster :

I am best known for , , and . I geek out over , , and the . I'm probably a .

I live in , with a , , , and a freshwater or five. I offset my with . I coach youth and attend North United Church.

This is a sequel after a Terraform disaster. Boosts appreciated to relocate my peeps.

are he/him.

Markus Wamser's avatar
Markus Wamser

@wamserma@hachyderm.io

Hello World.

I'm a consultant/developer for Embedded Systems Security.

Every now and then I contribute to and

I tried blogging a few times before, but either the service went out of business after a few posts or I ran out of time for longer posts.

Expect and or orientended content from me.
Ocassional ramblings on random things, too.

maralorn's avatar
maralorn

@maralorn@chaos.social

Hey and people!

I wrote a matrix bot for nixpkgs pull request notifications.

It‘s like the cool https//nixpk.gs/tracker.html by @qyliss, which shows you which release channels a pull request has reached.

With the bot you can subscribe and get notifications, whenever it reaches a channel instead of hammering F5 in your browser tab.

Just open a query to matrix.to/#/@nixpkgs-bot:maral and send "help".

Looking forward to you all stress testing it!

Jake Hamilton's avatar
Jake Hamilton

@jakehamilton@hachyderm.io

Hello Fediverse! I'm Jake, a Software Engineer that likes building cool, impactful things! I've written mostly JavaScript and TypeScript in my career and love , , and / .

Lately I've been working on Nix-related things at github.com/snowfallorg/

Thank you to the wonderful people at Hachyderm for having me here :)