trochę słabo że włączenie X-ów instaluje lightdm-a ale już nie dorzuca żadnego menedżera okien i nie ma jak się zalogować (ctrl-alt-f2 działa OFC)

#linux #nixos

RE: https://mastodon.social/@Tuxdoctor/116247694950954874

I see this effort as a perfect successor to the postmarketOS wiki tables, which relied on manually filled support levels.

It enables tracking across all distributions, different kernel versions, and patchsets.

It’s simple: you run a diagnostics app, and at the end, you can upload the results for everyone to see.

#MobileLinux #LinuxMobile #Linux #Kernel #MainlineLinux #Mobian #NixOS #postmarketOS

I'm sorry but why tf is the #nixos #asahi installer made by this random creature so much less of a pain then what nix-community provides?!

https://nixos-asahi.qeden.dev/

- posted by Valerie
NixOS Asahi Installer

NixOS installer for Apple Silicon Macs.

NixOS Asahi Installer

✨ Lix now has an Open Collective! ✨

Support the project that makes your Nix evaluations nicer: https://opencollective.com/lix-project

If you've ever enjoyed using Lix, consider donating and help us getting closer to sustainability!
Every contribution counts!

#nixos #lix

Lix Package Manager - Open Collective

Lix is a modern, delicious implementation of the Nix package manager, focused on correctness, usability, and growth – and committed to doing right by its community.

OMG

We finally finished lucee-nix and ngl we hella proud of this because it is by far the best way to run
#Lucee, yes even better than coldbox ;3 ​

https://github.com/emotions-ch/lucee-nix

#nixos #nix #webdev #coldfusion
Added a new section on the #NixOS wiki page about @stalwartlabs mail server on how to block specific mail addresses and mark them as spam 🪲 https://wiki.nixos.org/wiki/Stalwart#Blocking_mail_sender_address
Stalwart - Official NixOS Wiki

Stalwart is an open-source, all-in-one mail server solution that supports JMAP, IMAP4, and SMTP protocols. It's designed to be secure, fast, robust, and scalable, with features like built-in DMARC, DKIM, SPF, and ARC support for message authentication. It also provides strong transport security through...

How to use both unstable-nixpkgs and stable-nixpkgs in your flake.nix and configuration.nix

https://infosec.pub/post/43618290

How to use both unstable-nixpkgs and stable-nixpkgs in your flake.nix and configuration.nix - Infosec.Pub

I had an issue with building so I decided to move one package from the unstable repo to the 25.11 repo. My default channel is unstable so this guide adds the 25.11 repo into my flake and configuration. It can easily be substituted if you’re running stable as the default pkgs and want some unstable-pkgs. 1. add the url to your flake inputs inputs = { stable-nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11"; ... } 2. update the arguments in the outputs function to include the new variable outputs = { self, nixpkgs, stable-nixpkgs, ... }@inputs: { ... } 3. import the repo into your configuration.nix { config, pkgs, inputs, lib, ... }: let pkgs-stable = import inputs.stable-nixpkgs { system = "x86_64-linux"; config.allowUnfree = true; }; in { ... } 4. Add the package you want from this repo enrionment.systemPackages = [ pkgs.vim pkgs-stable.heroic ]

Starting a set of #nixos and #nix guides under getnix.io. Focused on specific, opinionated scenarios we actually use day to day.

First up: Reproducible #golang builds with Nix and #docker images. Ditch the Dockerfile, get bit-for-bit identical binaries across dev and prod, cross-compile from macOS to Linux, and ship tiny containers. No more "works on my machine."

https://getnix.io/guides/go-nix-docker/

Reproducible Go with Nix & Docker

Set up a Nix development environment for Go and build a Docker image with a byte-by-byte identical binary in development and production.

The `programs.gemini-cli.policies` option has been added to support configuring the Gemini CLI policy engine. This option accepts an attribute set where values can either be paths to existing TOML files or attribute sets that will be generated into TOML format. These policies provide fine-grained control over tool execution rules for the CLI.
#NixOS #Nix #HomeManager
Does anyone know if #proxmox runs well on #nixos ? Been thinking about swapping the raw #docker setup I have on my #homelab for something more structured. (Open to other options as well though lol)