NixOS
- Self Hosting Vaultwarden and Setting up SSL Certificates under Tailscale in Nixosblog.alper-celik.dev Self Hosting Vaultwarden and Setting up SSL Certificates under Tailscale in Nixos - Alper Çelik's blog
I have been using pass but since i am experimenting with selfhosting and wanted to store passkeys inside my password manager i wanted to selfhost Vaultwarden (a Bitwarden server implementation) server but i didn’t wanted to expose it to internet so i wanted to use my Tailscale network. so i added re...
- I would kill for QubesOS features in NixOS
Meaning, VMs with Xen and hardware virtualization support
The system VM/Qube for USBs is isolated, the Network VM/Qube is separate and isolated, the windowing system and OS housing the qubes is isolated....
And being able to configure all of those with Nix would be a wet dream come true
- Nix 2.24.8 released fixing builtin:fetchurl credentials leak, severity 5.9 (moderate)discourse.nixos.org Nix 2.24.8 released fixing builtin:fetchurl credentials leak, severity 5.9 (moderate)
DetSys seems to have made a security release to NixCpp. The primary risk is leaking of netrc credentials through a crafted derivation plus an attacker-in-the-middle. Users of the experimental feature impure-derivations are at greater risk. FlakeHub Cache users and users of impure derivations sh...
- Immich merged to NixOS:master
cross-posted from: https://discuss.tchncs.de/post/22577290
- Inspect where a NixOS option is definedfzakaria.com NixOS Option Inspection
NixOS modules are great; and it’s one of the superpowers of NixOS. They’re so great, there was a working group to look into how to apply the concept to Nixpkgs itself. For those uninitiated, there are plenty of guides online describing it’s value and purpose such as this one or on nix.dev. My larges...
- Adding aria2 download manager to my NixOS homelabjdheyburn.co.uk Adding aria2 download manager to my NixOS homelab
I add aria2 as a download manager to a NixOS server to help bundle my Bandcamp downloads together
cross-posted from: https://discuss.tchncs.de/post/22480304
- Tips&Tricks for NixOS Desktopdiscourse.nixos.org Tips&Tricks for NixOS Desktop
It’s often said that git is a poor VCS, but a good VCS Construction Kit. NixOS can feel similar at times — nix is very powerful, and there are amazing things you can do if you know nuts&bolts of it. However, for a casual user, the sheer amount of possibilities can feel overwhelming, and it might ...
cross-posted from: https://discuss.tchncs.de/post/22424459
- Combining best of system Firefox and home-manager Firefox settingsdiscourse.nixos.org Combining best of system Firefox and home-manager Firefox settings
I haven’t seen this documented yet, and wanted to point out that it’s possible to use BOTH the system-level Firefox and the home-manager-level Firefox settings. Why would you want to do this? Well, each has its advantages: System-level Firefox allows you to create system-wide “policies” that inc...
cross-posted from: https://discuss.tchncs.de/post/22424275
- Nix-minecraft: Making Minecraft More Declarativediscourse.nixos.org Nix-minecraft: Making Minecraft More Declarative
For a little bit now, I’ve been somewhat disappointed with how Minecraft (particularly servers) have been packaged with Nix and NixOS. So, since I run a couple servers of my own, I decided to spin off my module and packages into its own (flakes!) repository for the world to use: GitHub - Infinidoge/...
- NixOS Facter: a declarative hardware configuration for NixOS is inviting the community to try it out.discourse.nixos.org NixOS Facter: declarative hardware configuration for NixOS
Since we introduced NixOS Facter six weeks ago (Better hardware-detection with nixos-facter), we’ve mainly focused on refining and stabilising the report format and establishing some essential documentation. I’m happy to say that work is now done, and we’d like to invite the community to try it out...
NixOS Facter aims to be an alternative to projects such as NixOS Hardware and nixos-generate-config. It solves the problem of bootstrapping NixOS configurations by deferring decisions about hardware and other aspects of the target platform to NixOS modules.
- Principal Skinner on Immutable Distros
cross-posted from: https://infosec.pub/post/15780978
> > Am I out of touch? > > > > No, it's the forward-thinking generation of software engineers that want elegant, reliable, declarative systems that are wrong. >
- Apparently nix-unstable might be a more stable package manager than nixpkgs for gaming
Had a lot of headaches the last week or two trying to optimize star citizen as well as fix a vulkan RHI bug which was affecting unreal engine games.
Apparently rolling release schedules (like NixOS23.05, 23.11, 24.05...) are better for servers since they're less prone to change, where as nightlies like for the unstable Branch are better for gaming since those latest drivers are likely the current ones for a newly released game
- Idea: NixOS configuration meant for hosting "for the common good" services, like tor relays, simplex relay, archive team warrior, etc.
This idea is inspired by nixos-mailserver. It was so easy to spin up the mailserver after changing some DNS records and putting in some settings. I thought it might be a good idea to do the same for services that need public, decentralized infrastructure to support. Some ideas include
- Tor relay, or exit node
- Encrypted messaging nodes. It looks like SimpleX chat relies on SMP servers to relay communication
- Crypto miners (I know, I know, but you understand how it fits the "public contribution" usecase)
- Search engines like searxng (I currently use a public instance)
- Libredirect services, like proxy clients for social media
Maybe federated services, but those require more than just the software running on the public internet. Those require moderation and long term maintenance. Ideally, the services in this config would be ephemeral.
Does this sound like a good idea? Would you spin one of these up on a $10 VPS? I understand that this is the NixOS community, not necessarily the privacy community, but I figured thered be overlap.
What other services do you think would be applicable?
- [Help] Python Packaging Issue: How to link libnvrtc.so.12 and libnvrtc-b51b459d.so to torch-bin?discourse.nixos.org Python Packaging Issue: How to link libnvrtc.so.12 and libnvrtc-b51b459d.so to torch-bin
I’m trying to package a repo I used to use in Windows Subsystem for Linux. I’m about to resort to podman, but I’m so close to getting it to work in Nix. The original repo is here: GitHub - neonbjb/tortoise-tts: A multi-voice TTS system trained with an emphasis on quality My fork uses poetry2nix her...
- Has someone deployed Kafka on their NixOS system? I could use some help doing it the "nix" waydiscourse.nixos.org How to setup Kafka Server on Nixos
I found some settings on NixOS Search I’ve added these to my configuration.nix: environment.systemPackages = with pkgs; [ apacheKafka ]; services.apache-kafka = { enable = true; settings = { "broker.id" = 0; "log.dirs" = [ "/tmp/kafka_logs" ]; listeners = ["PLAI...
- Making a development shell for an AI/GPU Accelerated python project with nix flakes, poetry/poetry2nix, and pypi
Went through the pain of packaging a python project on Nixos. Here's some issues I hit, and how I got lucky resolving them. I feel the most reliable way of doing this in the future is to use docker and just imperatively build.
Here's how I got web drivers, AI dependencies, gpu dependencies, and an api dependency bundled together into an ephemeral shell for python development, on NixOS 23.11
-
Start with setting up poetry2nix
-
Get the template flake by running
nix flake init --template github:nix-community/poetry2nix
-
in the flake.nix, sometimes changing
projectDir = self
toprojectDir = ./.
fixed some issues -
in your terminal, run
nix develop .
to build the poetry app with python packages described inpyproject.toml
-
By default, just poetry and python latest should be installed. the dependencies for the project (which gets reflected in the pyproject.toml) are updated with
poetry add
, such aspoetry add numpy selenium scikit-learn
-
Exit out of the ephemeral shell from
nix develop .
, and rerun to have poetry2nix rebuild and link the newly declared packages
Poetry2nix has worked pretty well for the more obscure python packages, but failed in others. For example,
sentence-transformers
would depend onmaturin
, which would fail to linksetuptools
. If poetry doesn't work, you can try and get the package from nixpkgs, or specify sha256s from pypi.orgHere's an example of what I added to my flake.nix to get gpu acceleration, sentence-transfomers, firefox drivers for selenium, and other packages poetry failed to setup:
packages = [ pkgs.poetry pkgs.python311Packages.sentence-transformers pkgs.firefox pkgs.python311Packages.openai pkgs.python311Packages.yt-dlp pkgs.python311Packages.pyopencl ];
was added to this flake.nix, as in,
```nix { description = "Application packaged using poetry2nix";
inputs = { flake-utils.url = "github:numtide/flake-utils"; nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; poetry2nix = { url = "github:nix-community/poetry2nix"; inputs.nixpkgs.follows = "nixpkgs"; }; }; outputs = { self, nixpkgs, flake-utils, poetry2nix }: flake-utils.lib.eachDefaultSystem (system: let # see https://github.com/nix-community/poetry2nix/tree/master#api for more functions and examples. pkgs = nixpkgs.legacyPackages.${system}; inherit (poetry2nix.lib.mkPoetry2Nix { inherit pkgs; }) mkPoetryApplication; in { packages = { myapp = mkPoetryApplication { projectDir = ./.; }; default = self.packages.${system}.myapp; }; devShells.default = pkgs.mkShell { inputsFrom = [ self.packages.${system}.myapp ]; packages = [ pkgs.poetry pkgs.python311Packages.sentence-transformers pkgs.firefox pkgs.python311Packages.openai pkgs.python311Packages.yt-dlp pkgs.python311Packages.pyopencl ]; nativeBuildInputs = [( pkgs.python311Packages.buildPythonPackage rec { pname = "serpapi"; version = "0.1.5"; src = pkgs.python311Packages.fetchPypi { inherit pname version; sha256 = "b9707ed54750fdd2f62dc3a17c6a3fb7fa421dc37902fd65b2263c0ac765a1a5"; }; } )]; }; }); } ```
There was one package (serpapi), which was not in nixpkgs, and poetry failed as well. Adding this to native build inputs got serpapi installed
nativeBuildInputs = [( pkgs.python311Packages.buildPythonPackage rec { pname = "serpapi"; version = "0.1.5"; src = pkgs.python311Packages.fetchPypi { inherit pname version; sha256 = "b9707ed54750fdd2f62dc3a17c6a3fb7fa421dc37902fd65b2263c0ac765a1a5"; }; } )];
All in all, it works, and I have no doubt I've made a reproducible environment. What attracts me is I've never had an easier time setting up cuda/cudnn/tensorrt/... system drivers have been near effortless, and much faster to setup than on debian. Tools like sentence-transformers and torch default to packages which leverage the GPU.
What pushes me away, is I've had failures in each of the three methods for specifying package dependencies, even though one of the three eventually was the fix for integrating the dependencies into my shell. For now, I'll stick with it, but it's hard for me to suggest to a team we use this in development
- How to setup unreal engine 5.3.2 on NixOS, and fix compile failures from Setup.sh: required file not founddiscourse.nixos.org UE compile failures on latest nix
I’ve got it to at least link appropriately. Here’s what I did, not sure if using steam-run is all I needed to do, but I did all three of the following in this thread https://www.reddit.com/r/NixOS/comments/17kwkgv/switched_from_nobara_to_nixos_my_opinion_so_far/ Unreal Engine and Godot Engine nee...
- What's that thing with --extra-experimental-features?
So I tried to follow some tutorial about flakes, but it seems these are extra-experimental still.
I am using NixOS 23.11 with Nix 2.18.1 in a VM (those are the most recent stable versions, right?).
Trying around I already found out that instead of eg.
nix flake update
I have to use--extra-experimental-features
two times to get this simple command:nix --extra-experimental-features nix-command --extra-experimental-features flakes flake update
Searching the web I found several different things that people put into their/etc/nixos/configuration.nix
to enable this globally, but none of those worked for me. I assume there is still a way to do this - can someone please tell me the correct syntax for Nix 2.18.1?What makes things worse is that I cannot start playing around with home-manager and flakes, because
home-manager switch flake .
seems to usenix flake
internally, which leads to errors instead of results. - Getting started with NixOS - looking for tutorials
I heard a lot about the concepts of nix and NixOS and I'd love to try it.
After installing the VirtualBox demo, I keep getting stuck with every tiny step I take, though.
So I was wondering if there are any tutorials for beginners that you can recommend?
I couldn't find anything on the internet - everything that looks like a tutorial presumes a lot of things everybody seems to know about nix, so no need to explain those.
Where can I find those explanations to make the first baby steps with NixOS?
To put it in other words: Where is NixOS for dummies?
- Can We Nixify Lemmy's Dev Environment?
cross-posted from: https://infosec.pub/post/9428674
I had the (perhaps foolishly ambitious) idea of creating a rolling fork of Lemmy with the intent of modifying the codebase for use in an open source pub sub implementation of retail inventory. But I have to get standard Lemmy working first...and I like to use Nix for everything I do in the dev world (where feasible).
So, I forked the repo and was immediately brought into dev environment hell.
They only offer a choice between:
A.) Docker B.) Ansible C.) Building from scratch.
Two hours of fighting with the scratch build instructions and I eventually had to admit defeat due to some vague dependencies (and general malaise). Though I have completely flakified my Purescript and Haskell dev environments, I have found Rust to be a lot more challenging even on simple projects.
Anyway, I decided to come here to ask: **How easy would it be to flakify the Lemmy repo to add a fourth build option for those of us in the Nix world? **
Can I reference the build instructions from nixpkgs to get close to my intended goal? I need all of the help I can get. Be as pedantic or defeatist as you will. I currently have no skin in this game and merely want to help the Lemmy devs welcome people that are more nixy like myself (if nothing else).
- Say Goodbye to Containers | Ephemeral Environments with Nix Shell
YouTube Video
Click to view this content.
- Replacing docker/podman with Nixos?
I setup a next.js project with pkgs.mkshell, and used nix develop to automatically build the project. However, when I leave the shell, the files persist. How should/can(?) I setup my shell.nix so that files in the directory it drops down into are automatically removed when leaving the ephemeral shell?
- How to get KDE Plasma 6?
Hey guys, I'm pretty new to Nix and NixOS and one of the reasons I installed it is because I know there's some way to install the KDE 6 Beta before the official stable release. I wanted to use the kde2nix overlay, but appearantely KDE 6 has been merged into the official nixpkgs repository. How do I switch from Plasma 5 to 6? I'm already on the unstable channel if that matters.
Thanks in advance.
- Could Nix os be like active directory on Linux?
So I've been looking into Nix and it seems like a pretty cool way of managing machines. However, I'm curious about how well it can manage user authentication. Theoretically one should be able to setup the equivalent of roaming profiles with rsync and some sort of authentication server but I haven't seen a lot of information on this topic.
Anyone used Nix in a group or company setting? If so, how did it work?
- Nixpkgs merge bot testing and plandiscourse.nixos.org Nixpkgs merge bot testing and plan
After receiving a lot of concerned feedback in a previous attempt, it’s time to clear things up and give it another chance. Starting today, the Nixpkgs merge bot will be enabled in dry-run mode. This means that it is not privileged to actually merge anything at all just yet, and instead only print...
- how to / best practices for setting up and tracking a Python project with nix flakes
I want to start a new project, and I want to try to handle all the reproducibility / "containerization" in nix instead of dockerfiles. I see some examples online but I think they're including more uncommon procedures and/or don't do things the "nix" way.
What's the right way to manage a simple python project? Should I just make a derivation.nix for use in nix-shell -p and have the ephemeral shell be my container? Can/should I do it with nix flakes instead? What would a simple nix flake look like that:
pulls an initial python repo from github
possibly executes whatever build instructions might be included
extends other system packages or other versions of the same python package,
has local area network access,
and GPU access
- How to enable system theme for Firefox?
cross-posted from: https://feddit.de/post/7895009 >I'm a semi-recent NixOS user and one thing that bothers me since the beginning is that when I change the Gnome theme (between light and dark), Firefox doesn't adapt. The system theme in Firefox is enabled, but it always displays the light theme, no matter what theme is selected in Gnome. > > Internet search, including searching through NixOS discourse, packages, options and Nixpkgs repo surfaced a solution. > > Any ideas or tips how to achieve system theme integration for Firefox on NixOS? > > NixOS 23.11 / Gnome 45 / sway
- [hyprland] My NixOS Configuration
Plenty of nix'd config, nix-colors theming for most applications. I've only been using linux for around 6 months, NixOS has really clicked with me.
My config might be sub-optimal in areas, but its gone through some heavy changes since its inception.
- Installing NixOS made my Windows Dual Boot fail
I've probably parsed dozens of pages now, including the "Dual boot NixOS and Windows" page on nixos.wiki, and not really sure what the best steps are since most seem to leverage the fact that everything is on a single partition. My windows lives on a physically separate drive than NixOS, so osprober does not detect the windows partition at all. I tried to go down the route of grub-mkconfig but that doesn't seem to be a nix package and I couldn't mount my Windows bootloader as it is NTFS. Is this even possible with this configuration?
My next step was going to be to physically disconnect each of my disks/NVME, nuke everything bit by bit, then only connect the disks I want and install each OS with it's specific disk connected.
- NixCon North America 2024 is happening on March 14th and 15th in CA, USA. | Call for Proposalschaos.social NixOS (@nixos_org@chaos.social)
Attached: 1 image 🗓️ Mark your calendars! NixCon North America 2024 is happening on March 14th and 15th in CA, USA. Submit your talk or workshop proposal before December 31, 2023, 11:59 PM PST. Be a part of this exciting event! More details at: https://discourse.nixos.org/t/nixcon-na-2024-call-for...
cross-posted from: https://programming.dev/post/7531089
> 🗓️ Mark your calendars! NixCon North America 2024 is happening on March 14th and 15th in CA, USA. Submit your talk or workshop proposal before December 31, 2023, 11:59 PM PST. Be a part of this exciting event! More details at: https://discourse.nixos.org/t/nixcon-na-2024-call-for-proposals/36491 > > > !
- Can you setup garbage collection to delete every other generation or every other N generations after a certain limit has been reached?
I see you can delete everything older than some period of time, but what if I want some older than a year? Or should it be interpreted that: whatever build configuration was used, it is tested thoroughly at that point, and it would be better to rebuild from a nix configuration stored on git?
- First Time NixOS setup help installing basic apps, dependencies, and themes
Edit: my issues came from copying source .nix configurations for the pig manager, not configurations that I would include on my computer. Finding how to include what where was much easier with search.nixos.org
Hi, I've finally cleansed my system of windows and switched fully into nix. I want to learn this OS the right way, but have ran into some noob troubles. Any help would be greatly appreciated. Ideally, these changes are things I would include in my configuration.nix
- How to install electrum wallet on nixos? I found this default.nix for electrum and thought it would be as easy as
nix-build default.nix
but was mistaken. It says " cannot evaluate a function that has an argument without a value ('fetchurl') Nix attempted to evaluate a function as a top level expression" but on a later line that value is inputted to the function (if I understand right)
>
src = fetchurl { url = "https://download.electrum.org/${version}/Electrum-${version}.tar.gz"; sha256 = "sha256-BxxC1xVKToUjgBo4mEeK9Tdhbd/+doHcTTJsXDtaELg="; };
- How to install KVantum Theme Manager? I was following this guide and tried to add gcc/g++ and the x11 package dependencies but I get undefined variables for the x11 libraries. Some recommend using stdenv.mkDerivations but I haven't used that much nix before so I'm not certain if I should be going down that rabbit hole
- How to install electrum wallet on nixos? I found this default.nix for electrum and thought it would be as easy as
- New Nix Wiki: NixLang Wiki
Came across a new nix wiki attempt. The announcement post is made on discourse with high skepticism.
But I really like it for two reasons:
- For now, its incredibly informal and the barrier to entry is low. And because I can make edits directly in the web interface, it felt easy to contribute.
- The creator mentions wanting this to be like the Arch wiki. In other words, contain information useful to nix users, but not necessarily nix specifically.
I was able to contribute a new article about distrobox, a tool I discovered and made a post about here a month or so ago.
Maybe we don't "need" another wiki, but the opportunity to contribute really made this one stand out to me. In case you all might want to contribute or learn something, I thought I would share.
- What should manage your xsession?
I'm conflicted on what should handle my login manager, desktop environment, and window manager. What are the pros and cons of doing it from a nixos configurations versus a home manager configuration?
- Flakes use in home manager help required
I want to use Plasma-manager in my system. I have enabled flakes in configurations. Now what to do to use it. The output generated by tool rc2nix can be copied through terminal but when i put that in home.nix , it says that plasma is not available which is true but then how do I use this tool. flake file.
- Providing Runtime Secrets to NixOS Services with Agenixlgug2z.com Providing Runtime Secrets to NixOS Services
In my last post, I shared how to get a working instance of Nitter deployed on NixOS, but requested advice on how to best automatically provision the guest_accounts.json runtime secret file on the target server. A number of folks reached out to me on Mastodon (thanks @vt52@ioc.exchange, @aynish@merve...