Stream: social-media

Topic: r/nixos


view this post on Zulip Zapier (Nov 30 2023 at 01:49):

Announcing nixlang.wiki

Date: 2023-11-29T13:26:44+00:00
Link: https://old.reddit.com/r/NixOS/comments/186pcmx/announcing_nixlangwiki/

We are happy to announce another unofficial community wiki, nixlang.wiki , as an alternative to the poorly maintained nixos.wiki . If Arch Linux can have such a nice wiki, why shouldn't we be able to?

To make the wiki less centralized, we have automatic, world readable backups of all articles to a git repository (https://github.com/nixlang-wiki/nixlang-wiki ), to make it easier to migrate from the wiki in the future if necessary.

We also just landed a feature that enables you to browse the wiki in your terminal, by download the entire wiki as man pages https://github.com/nixlang-wiki/nixlang-wiki/pull/2 . It's a bit primitive right now, but we plan to improve it.

So far we've been very glad to see the positive response from the community, and hope to see more contributions.

EDIT: the reason why we don't try to improve the old one is because that's impossible, the maintainer has gone awol https://github.com/nix-community/wiki/issues/46#issuecomment-1381989599 .

Also we have good reasons to think that situation won't be resolved anytime soon, and we couldn't have features like a git backup without going for a different wiki platform than the very outdated mediawiki version https://github.com/nix-community/wiki/issues/50 .

In the future, we expect to be able to migrate old nixos.wiki articles over to nixlang.wiki , so there really isn't much lost.

​

submitted by /u/cafkafk

[link] [comments]

view this post on Zulip Zapier (Nov 30 2023 at 03:07):

NixOS 23.11 released

Date: 2023-11-30T03:01:56+00:00
Link: https://old.reddit.com/r/NixOS/comments/1878265/nixos_2311_released/

submitted by /u/mitchiebitchie

[link] [comments]

view this post on Zulip Zapier (Nov 30 2023 at 05:51):

Help Translating default.nix to flake.nix

Date: 2023-11-30T05:46:37+00:00
Link: https://old.reddit.com/r/NixOS/comments/187b6s8/help_translating_defaultnix_to_flakenix/

There is a file that someone has made, but I am trying to get on the flakes train and translate it into a usable flake.nix file. It comes with the challenege of compiling a file from a repository on github. If someone could help walk me through how to turn this would be great!

{ lib, stdenv, fetchurl, zlib, bzip2, lzma, perl, ncurses }: stdenv.mkDerivation rec { version = "1.16.1"; name = "samtools-${version}"; src = fetchurl { url = "https://github.com/samtools/samtools/releases/download/${version}/${name}.tar.bz2"; sha256 = "01qxvygvq6m7m3vhlysdw5g1qkx1c182vly90wyz4k2rg1gs581g"; }; buildInputs = [ zlib bzip2 lzma perl ncurses ]; #patches = [ ./install-lib_1.13.patch ]; doCheck = false; installPhase = '' make prefix=$out install ''; meta = with lib; { description = "Tools for reading/writing/editing/indexing/viewing SAM/BAM/CRAM format"; license = licenses.free; homepage = "http://www.htslib.org"; platforms = platforms.unix; }; } For reference I am running NixOS on a 2020 Mac M1, so:

system: "aarch64-darwin"

submitted by /u/vanslife4511

[link] [comments]

view this post on Zulip Zapier (Nov 30 2023 at 14:08):

Am I doing this right?

Date: 2023-11-30T13:57:20+00:00
Link: https://old.reddit.com/r/NixOS/comments/187j4bu/am_i_doing_this_right/

So, I'm trying to set up my own personal nixos config. From what I can tell i'm doing this sort of right... but I can't tell. Here's my general structure for organizing and doing everything:

:organize: NixOS | +-:book: README.md | +-:snowflake: flake.nix | +-:locked: flake.lock | +-πŸ—„ .sops.yaml | +-:organize: system | | | +-:organize: global | | | | | +-:snowflake: config.nix | | | | | +-:snowflake: pkgs.nix | | | +-:organize: laptop | | | | | +-:snowflake: config.nix | | | | | +-:snowflake: hardware.nix | | | | | +-:snowflake: pkgs.nix | | | +-:organize: desktop | | | +-:snowflake: config.nix | | | +-:snowflake: hardware.nix | | | +-:snowflake: pkgs.nix | +-:organize: home | | | +-:organize: global | | | | | +-:snowflake: home.nix | | | | | +-:organize: modules | | | | | +-:organize: ags | | | | | | | +-:snowflake: default.nix | | | | | +-:organize: hyprland | | | | | | | +-:snowflake: default.nix | | | | | +-:organize: neovim | | | | | +-:snowflake: default.nix | | | +-:organize: laptop | | | | | +-:snowflake: home.nix | | | | | +-:organize: modules | | | +-:organize: desktop | | | +-:snowflake: home.nix | | | +-:organize: modules | +-:organize: secrets | | | +-:organize: global | | | | | +-πŸ—„ secrets.yaml | | | +-:organize: laptop | | | | | +-πŸ—„ secrets.yaml | | | +-:organize: desktop | | | +-πŸ—„ secrets.yaml | +-:organize: overlays | | | +-:organize: global | | | | | +-:snowflake: overlay.nix | | | | | +-:organize: retroarch | | | | | +-:snowflake: default.nix | | | +-:organize: laptop | | | | | +-:snowflake: overlay.nix | | | +-:organize: desktop | | | +-:snowflake: overlay.nix | +-:organize: assets | +-:organize: images | +-:organize: screenshots | +-:mountain_sunrise: desktop.jpg | +-:mountain_sunrise: neovim.jpg Thanks for your insights

submitted by /u/VerySpaghetti

[link] [comments]

view this post on Zulip Zapier (Nov 30 2023 at 14:08):

Am I doing this right?

Date: 2023-11-30T13:57:20+00:00
Link: https://old.reddit.com/r/NixOS/comments/187j4bo/am_i_doing_this_right/

So, I'm trying to set up my own personal nixos config. From what I can tell i'm doing this sort of right... but I can't tell. Here's my general structure for organizing and doing everything:

:organize: NixOS | +-:book: README.md | +-:snowflake: flake.nix | +-:locked: flake.lock | +-πŸ—„ .sops.yaml | +-:organize: system | | | +-:organize: global | | | | | +-:snowflake: config.nix | | | | | +-:snowflake: pkgs.nix | | | +-:organize: laptop | | | | | +-:snowflake: config.nix | | | | | +-:snowflake: hardware.nix | | | | | +-:snowflake: pkgs.nix | | | +-:organize: desktop | | | +-:snowflake: config.nix | | | +-:snowflake: hardware.nix | | | +-:snowflake: pkgs.nix | +-:organize: home | | | +-:organize: global | | | | | +-:snowflake: home.nix | | | | | +-:organize: modules | | | | | +-:organize: ags | | | | | | | +-:snowflake: default.nix | | | | | +-:organize: hyprland | | | | | | | +-:snowflake: default.nix | | | | | +-:organize: neovim | | | | | +-:snowflake: default.nix | | | +-:organize: laptop | | | | | +-:snowflake: home.nix | | | | | +-:organize: modules | | | +-:organize: desktop | | | +-:snowflake: home.nix | | | +-:organize: modules | +-:organize: secrets | | | +-:organize: global | | | | | +-πŸ—„ secrets.yaml | | | +-:organize: laptop | | | | | +-πŸ—„ secrets.yaml | | | +-:organize: desktop | | | +-πŸ—„ secrets.yaml | +-:organize: overlays | | | +-:organize: global | | | | | +-:snowflake: overlay.nix | | | | | +-:organize: retroarch | | | | | +-:snowflake: default.nix | | | +-:organize: laptop | | | | | +-:snowflake: overlay.nix | | | +-:organize: desktop | | | +-:snowflake: overlay.nix | +-:organize: assets | +-:organize: images | +-:organize: screenshots | +-:mountain_sunrise: desktop.jpg | +-:mountain_sunrise: neovim.jpg Thanks for your insights

submitted by /u/VerySpaghetti

[link] [comments]

view this post on Zulip Zapier (Nov 30 2023 at 14:24):

Black screen after adding Nvidia drivers

Date: 2023-11-30T14:13:08+00:00
Link: https://old.reddit.com/r/NixOS/comments/187jgr2/black_screen_after_adding_nvidia_drivers/

Hey /r/nixos ,

Posting here in hopes somebody else has ran into this. I have nixos on my desktop which works great, however after enable nvidia drivers with this config:

services.xserver.videoDrivers = ["nvidia"]; hardware.nvidia = { modesetting.enable = true; open = false; nvidiaSettings = true; package = config.boot.kernelPackages.nvidiaPackages.beta; }; Lightdm loads fine, however after logging in my screen flashes then goes blank with only my cursor showing. Switching to another tty I can see the card in nvidia-smi, and no errors in xorg or display-manager. This is a desktop setup (i9-12900K and RTX 3070 Ti)

The only thing is I can see 'Deleted GPU-0' inside my xorg log, so im currently investigating any of the generated nvidia xorg configs.

Any help would be appreciated!

submitted by /u/StartupChild

[link] [comments]

view this post on Zulip Zapier (Nov 30 2023 at 17:28):

Improper font(?) rendering in Calibre E-book Viewer

Date: 2023-11-30T17:18:23+00:00
Link: https://old.reddit.com/r/NixOS/comments/187nr6e/improper_font_rendering_in_calibre_ebook_viewer/

I installed NixOS with flakes using the unstable channel with KDE Plasma. I use the wayland session, and it is scaled to 150% automatically since my display is 1440p. Calibre itself looks fine on my display, so do all the other apps.

But when I open the Calibre e-book viewer, the font (and the reader UI too) is rendered in a weird way: https://imgur.com/a/mUjhiCz . It used to render fine on my previous Arch installation.

The same document looks crystal clear on my Macbook Pro too. I don't think fonts are the problem since stuff like the :cross_mark: for closing the reader from its menu is also blurred/blocky.

Any idea why this is happening?

P.S. The books render fine when opening them from the browser using the built-in webserver.

submitted by /u/EQuioMaX

[link] [comments]

view this post on Zulip Zapier (Nov 30 2023 at 20:17):

Change hardware config to use labels

Date: 2023-11-30T20:01:46+00:00
Link: https://old.reddit.com/r/NixOS/comments/187rm0i/change_hardware_config_to_use_labels/

I'm working my way through the NixOS installation guide. I've come to the essential changes in the configuration.nix.

It is fairly detailed in the commands and then it says "change hardware config to use labels"

Can anyone elaborate on this?

submitted by /u/penguinmatt

[link] [comments]

view this post on Zulip Zapier (Nov 30 2023 at 23:29):

Where can I download the man pages for Nix?

Date: 2023-11-30T23:24:51+00:00
Link: https://old.reddit.com/r/NixOS/comments/187wibr/where_can_i_download_the_man_pages_for_nix/

Title

I just installed nix on my gentoo box from this overlay: https://github.com/trofi/nix-guix-gentoo

No man pages included, and seems like any --help just references the man pages

So I try to build it with the doc use flag, which provides documentation for packages

That fails, because the ebuild is unable to download one of the 219(!!!!) rust crates required for a backend that checks links for a tool that I assume creates troff from markdown.

That's the most revolting thing I've seen since I saw create-react-app barf over 200 MB onto disk, including 19 copies of the same node package.

Where can I just download the troff TUVM?

submitted by /u/aktivb

[link] [comments]

view this post on Zulip Zapier (Dec 01 2023 at 00:02):

I really apologize. I accidentaly upgraded to 24.05

Date: 2023-11-30T23:49:55+00:00
Link: https://old.reddit.com/r/NixOS/comments/187x302/i_really_apologize_i_accidentaly_upgraded_to_2405/

​

https://preview.redd.it/7wzeg4tjok3c1.png?width=1044&format=png&auto=webp&s=7b0e0d9946dae32c1d472bef1d81b8163de8fe80

submitted by /u/cfx_4188

[link] [comments]

view this post on Zulip Zapier (Dec 01 2023 at 00:02):

23.11 nvidiaPackages.stable appears to be installing 545, is that correct?

Date: 2023-12-01T00:01:10+00:00
Link: https://old.reddit.com/r/NixOS/comments/187xbws/2311_nvidiapackagesstable_appears_to_be/

On 23.11 I'm getting the 545.29.02 driver by default. The 545 driver is still a beta driver, as far as I'm aware. Shouldn't config.boot.kernelPackages.nvidiaPackages.stable be the 535.129.03 driver?

For anyone with this issue config.boot.kernelPackages.nvidiaPackages.production is still 535 if you want to switch back.

Sorry if there is a more appropriate forum for this, I'm new.

submitted by /u/Ruck0

[link] [comments]

view this post on Zulip Zapier (Dec 01 2023 at 03:02):

Font missing.

Date: 2023-12-01T03:00:21+00:00
Link: https://old.reddit.com/r/NixOS/comments/18817ak/font_missing/

I've been trying to solve the problem for 4 days, this symbol (α²Ό) is missing, I have the following fonts:

fonts = { fontDir = { enable = true; }; fontconfig = { enable = true; antialias = true; hinting.enable = true; }; fonts = with pkgs; [ (nerdfonts.override { fonts = [ "NerdFontsSymbolsOnly" ]; }) noto-fonts-cjk-serif noto-fonts-cjk-sans noto-fonts-emoji noto-fonts overpass ]; }; ​

submitted by /u/Varmisanth

[link] [comments]

view this post on Zulip Zapier (Dec 01 2023 at 03:47):

Custom Oh-My-Zsh Theme Install

Date: 2023-12-01T03:38:26+00:00
Link: https://old.reddit.com/r/NixOS/comments/1881z5w/custom_ohmyzsh_theme_install/

im trying to figure out how to install a custom theme for oh-my-zsh. its an external theme file, that is not part of the OMZSH "themes" in the wiki. in a normal OS, i would drop the theme file into the .oh-my-zsh/themes directory, and call it out in the appropriate config file.. Not sure how to do it here.

submitted by /u/nymobster

[link] [comments]

view this post on Zulip Zapier (Dec 01 2023 at 06:22):

Is nixOS a good desktop distro?

Date: 2023-12-01T06:17:21+00:00
Link: https://old.reddit.com/r/NixOS/comments/1884xbj/is_nixos_a_good_desktop_distro/

Hi everyone! So I discovered nixOS pretty recently and I love the concept of it but I watched some YouTube videos of it and most people mention it's good for businesses but no really said anything about using as a daily driver. So I wanted to ask here, is nixOS good for a desktop distro? I mainly just do some light gaming and listen to music on my PC.

submitted by /u/Deliantomov

[link] [comments]

view this post on Zulip Zapier (Dec 01 2023 at 08:24):

Quick question on getting steamtinkerlaunch working in nixos:

Date: 2023-12-01T08:22:19+00:00
Link: https://old.reddit.com/r/NixOS/comments/1886uxg/quick_question_on_getting_steamtinkerlaunch/

[root@nixos:~]# echo $STEAM_EXTRA_COMPAT_TOOL_PATHS

​

[root@nixos:~]# ls $STEAM_EXTRA_COMPAT_TOOL_PATHS/SteamTinkerLaunch/steamtinkerlaunch

/SteamTinkerLaunch/steamtinkerlaunch

​

As you can see echo is not returning anything, so how do you set this path environment variable in configuration.nix? I can't remember the exact code.

​

submitted by /u/zeta_00

[link] [comments]

view this post on Zulip Zapier (Dec 01 2023 at 08:41):

Switching from Arch Linux

Date: 2023-12-01T08:25:20+00:00
Link: https://old.reddit.com/r/NixOS/comments/1886wgg/switching_from_arch_linux/

Hi :)

I've recently heard of NixOS, and i found its concept of "functional configuration" really cool. I'm currently using Arch linux, with Hyprland and AGS, so i've already dipped my feet in this mindset of configuring the system via config files

I just wanted to ask some questions, before switching:

Is it simple to use? I don't mean easy , i imagine it'll take some time to learn, i mean if, after learning, updating/upgrading/managing the system is simple to do, and doesn't take a lot of time Is there any prominent missing package? I originally switched to Arch from Fedora because of the seemingly neverending availability of packges via pacman and the AUR. Did you find, in your experience, some important package that was not available on Nix? (I mainly use my pc to code, browse, draw and animate) Does it "like" dual boot? I only have a laptop, and i usually install in dual boot Windows, for gaming. Does NixOs have some peculiar quirk when dual booting, aside form the usual ones? Do you have some general beginner's tips? Those are all my questions, for now. Thanks in advance :)

submitted by /u/InKeaton

[link] [comments]

view this post on Zulip Zapier (Dec 01 2023 at 12:52):

Build tauri app for NixOS

Date: 2023-12-01T12:47:29+00:00
Link: https://old.reddit.com/r/NixOS/comments/188b2dk/build_tauri_app_for_nixos/

Hey!

I have access to the source code of an App built with Tauri that I want to package for NixOS.

As per Tauri's docs it supports bundling as a .deb or .AppImage.

I was wondering if there's a way to compile it into a NixOS compatible binary directly, so that it can be added to nixpkgs. Or if I have to go through the hassle as packaging it as one of the two, then extracting it and cherry pick the necessary dependencies to get it to run on my NixOS machine.

Thank you in advance! :)

submitted by /u/OakArtz

[link] [comments]

view this post on Zulip Zapier (Dec 01 2023 at 14:12):

How to install a ".run" file.

Date: 2023-12-01T14:08:09+00:00
Link: https://old.reddit.com/r/NixOS/comments/188cqad/how_to_install_a_run_file/

I need help getting a .run file to run.

Specifically these ones: xPilot-Client

I tried running the file normally and with steam-run but both result in an error:

Normal: fish: Job 1, './xPilot-2.0.0-beta.52-Linux.run' terminated by signal SIGSEGV (Address boundary error) Steam-Run: /nix/store/hzls2l9a86q9v2x0q6g2s4yfla8nwyyl-steam-run: line 19: exec: xPilot-2.0.0-beta.52-Linux.run : not found

​

submitted by /u/FinnLiry

[link] [comments]

view this post on Zulip Srid (Dec 01 2023 at 14:14):

/me changed the RSS feed to use the top weekly page

view this post on Zulip Zapier (Dec 01 2023 at 16:14):

Am I doing this right?

Date: 2023-11-30T13:57:20+00:00
Link: https://old.reddit.com/r/NixOS/comments/187j4bo/am_i_doing_this_right/

So, I'm trying to set up my own personal nixos config. From what I can tell i'm doing this sort of right... but I can't tell. Here's my general structure for organizing and doing everything:

:organize: NixOS | +-:book: README.md | +-:snowflake: flake.nix | +-:locked: flake.lock | +-πŸ—„ .sops.yaml | +-:organize: system | | | +-:organize: global | | | | | +-:snowflake: config.nix | | | | | +-:snowflake: pkgs.nix | | | +-:organize: laptop | | | | | +-:snowflake: config.nix | | | | | +-:snowflake: hardware.nix | | | | | +-:snowflake: pkgs.nix | | | +-:organize: desktop | | | +-:snowflake: config.nix | | | +-:snowflake: hardware.nix | | | +-:snowflake: pkgs.nix | +-:organize: home | | | +-:organize: global | | | | | +-:snowflake: home.nix | | | | | +-:organize: modules | | | | | +-:organize: ags | | | | | | | +-:snowflake: default.nix | | | | | +-:organize: hyprland | | | | | | | +-:snowflake: default.nix | | | | | +-:organize: neovim | | | | | +-:snowflake: default.nix | | | +-:organize: laptop | | | | | +-:snowflake: home.nix | | | | | +-:organize: modules | | | +-:organize: desktop | | | +-:snowflake: home.nix | | | +-:organize: modules | +-:organize: secrets | | | +-:organize: global | | | | | +-πŸ—„ secrets.yaml | | | +-:organize: laptop | | | | | +-πŸ—„ secrets.yaml | | | +-:organize: desktop | | | +-πŸ—„ secrets.yaml | +-:organize: overlays | | | +-:organize: global | | | | | +-:snowflake: overlay.nix | | | | | +-:organize: retroarch | | | | | +-:snowflake: default.nix | | | +-:organize: laptop | | | | | +-:snowflake: overlay.nix | | | +-:organize: desktop | | | +-:snowflake: overlay.nix | +-:organize: assets | +-:organize: images | +-:organize: screenshots | +-:mountain_sunrise: desktop.jpg | +-:mountain_sunrise: neovim.jpg Thanks for your insights

submitted by /u/VerySpaghetti

[link] [comments]

view this post on Zulip Zapier (Dec 01 2023 at 18:19):

Switching from Arch Linux

Date: 2023-12-01T08:25:20+00:00
Link: https://old.reddit.com/r/NixOS/comments/1886wgg/switching_from_arch_linux/

Hi :)

I've recently heard of NixOS, and i found its concept of "functional configuration" really cool. I'm currently using Arch linux, with Hyprland and AGS, so i've already dipped my feet in this mindset of configuring the system via config files

I just wanted to ask some questions, before switching:

Is it simple to use? I don't mean easy , i imagine it'll take some time to learn, i mean if, after learning, updating/upgrading/managing the system is simple to do, and doesn't take a lot of time Is there any prominent missing package? I originally switched to Arch from Fedora because of the seemingly neverending availability of packges via pacman and the AUR. Did you find, in your experience, some important package that was not available on Nix? (I mainly use my pc to code, browse, draw and animate) Does it "like" dual boot? I only have a laptop, and i usually install in dual boot Windows, for gaming. Does NixOs have some peculiar quirk when dual booting, aside form the usual ones? Do you have some general beginner's tips? Those are all my questions, for now. Thanks in advance :)

submitted by /u/InKeaton

[link] [comments]

view this post on Zulip Zapier (Dec 01 2023 at 19:22):

How to enable global compiler optimization?

Date: 2023-11-25T13:23:48+00:00
Link: https://old.reddit.com/r/NixOS/comments/183jo9e/how_to_enable_global_compiler_optimization/

I tried a lot of stdenv , ccWrap , and similar techniques, but none of them worked out well. Eventually, I found this post here , and I took some reference and wrote the following Nix configuration: nix { lib, ... }: { nix.settings.system-features = lib.mkForce [ "gccarch-x86-64-v3" "benchmark" "big-parallel" "kvm" "nixos-test" ]; nixpkgs.hostPlatform.system = "x86_64-linux"; nixpkgs.hostPlatform.gcc.arch = "x86-64-v3"; nix.buildMachines = [{ hostName = "localhost"; systems = [ "x86_64-linux" ]; supportedFeatures = [ "gccarch-x86-64-v3" "benchmark" "big-parallel" "kvm" "nixos-test" ]; maxJobs = 20; }]; nix.distributedBuilds = true; } But every time I run nixos-rebuild switch , the following error is observed, despite I specified the system as having gccarch-x86-64-v3 . error: a 'x86_64-linux' with features {gccarch-x86-64-v3} is required to build '/nix/store/82sfaiz7vijssydjh5rfjazxqv4gb23n-bootstrap-stage0-glibc-bootstrapFiles.drv', but I am a 'x86_64-linux' with features {benchmark, big-parallel, kvm, nixos-test} So how can I potentially enable such feature on the local machine?

submitted by /u/XiaoKeAi1

[link] [comments]

view this post on Zulip Zapier (Dec 01 2023 at 22:21):

Should I use Devenv.sh, flakes, Docker or directly NixOS config?

Date: 2023-12-01T17:42:14+00:00
Link: https://old.reddit.com/r/NixOS/comments/188hqwi/should_i_use_devenvsh_flakes_docker_or_directly/

Hi,

I started to use NixOS on my main computer since yesterday and it works great :)

Today I would like to start coding, but I would prefer not to hardcode languages in my NixOS config. To be portable/reproducible on a CI or whatever.

I saw the devenv project when I was on arch (and try it a bit but that is all)

But now that I'm on NixOS, is it a good idea? Is there a better way?

Thanks

submitted by /u/MyKiwi

[link] [comments]

view this post on Zulip Zapier (Dec 02 2023 at 04:17):

Build tauri app for NixOS

Date: 2023-12-01T12:47:29+00:00
Link: https://old.reddit.com/r/NixOS/comments/188b2dk/build_tauri_app_for_nixos/

Hey!

I have access to the source code of an App built with Tauri that I want to package for NixOS.

As per Tauri's docs it supports bundling as a .deb or .AppImage.

I was wondering if there's a way to compile it into a NixOS compatible binary directly, so that it can be added to nixpkgs. Or if I have to go through the hassle as packaging it as one of the two, then extracting it and cherry pick the necessary dependencies to get it to run on my NixOS machine.

Thank you in advance! :)

submitted by /u/OakArtz

[link] [comments]

view this post on Zulip Zapier (Dec 02 2023 at 09:10):

23.11 nvidiaPackages.stable appears to be installing 545, is that correct?

Date: 2023-12-01T00:01:10+00:00
Link: https://old.reddit.com/r/NixOS/comments/187xbws/2311_nvidiapackagesstable_appears_to_be/

On 23.11 I'm getting the 545.29.02 driver by default. The 545 driver is still a beta driver, as far as I'm aware. Shouldn't config.boot.kernelPackages.nvidiaPackages.stable be the 535.129.03 driver?

For anyone with this issue config.boot.kernelPackages.nvidiaPackages.production is still 535 if you want to switch back. (Edit: maybe don’t switch, I’m having trouble now I’ve swapped to production and rebooted)

Sorry if there is a more appropriate forum for this, I'm new.

submitted by /u/Ruck0

[link] [comments]

view this post on Zulip Zapier (Dec 02 2023 at 16:14):

Home Manager outside of NixOS, just for dotfiles

Date: 2023-11-29T12:22:34+00:00
Link: https://old.reddit.com/r/NixOS/comments/186o61u/home_manager_outside_of_nixos_just_for_dotfiles/

After a decade on Arch Linux I've decided to try and move to NixOS. I decided to start with Home Manager: a small step which I can later build on. I've wanted to improve my dotfiles configuration for a while anyways.

I set up Home Manager and configured a few programs with it, but now that I understand more of how it works I have a problem: it seems that Home Manager requires Nix to be installed and even with a minimal setup Nix takes GBs of storage and it defaults to install all the programs I wish to use even if the host system already provides them.

I use a bunch of non-Nix systems on which I have a small filesystem or a small Quota: university machines, friends' VPSs, existings servers and VMs etc. I can't afford to install Nix and GBs of data just to configure a few dotfiles for the already installed shell, editor etc. The Home Manager I just set up has way too much overhead to be used on these systems.

Is it possible to limit the overhead of Home Manager?

How do you guys deal with it?

Do you configure your dotfiles both with Home Manager (for the systems with Nix) and without (for the systems that don't), or did you find a better solution?

submitted by /u/IRunArchLinuxBTW

[link] [comments]

view this post on Zulip Zapier (Dec 02 2023 at 18:16):

I've setup autoUpgrades on my NixOS system, but how do I check it's working?

Date: 2023-11-27T17:13:58+00:00
Link: https://old.reddit.com/r/NixOS/comments/185808k/ive_setup_autoupgrades_on_my_nixos_system_but_how/

I've set up autoUpgrades on my NixOS system, but how do I check it's working and doing updates?

system.autoUpgrade = { enable = true; dates = "daily"; persistent = true; operation = "boot"; }; ​

​

submitted by /u/untrained9823

[link] [comments]

view this post on Zulip Zapier (Dec 02 2023 at 20:17):

Getting Distrobox to work on Nixos or any other Linux Distro

Date: 2023-11-27T16:08:34+00:00
Link: https://old.reddit.com/r/NixOS/comments/1856g0u/getting_distrobox_to_work_on_nixos_or_any_other/

submitted by /u/kalosdaemon

[link] [comments]

view this post on Zulip Zapier (Dec 03 2023 at 08:17):

nixCats-nvim update: v2.0 dropped

Date: 2023-12-02T23:53:12+00:00
Link: https://old.reddit.com/r/NixOS/comments/189gjd1/nixcatsnvim_update_v20_dropped/

https://github.com/BirdeeHub/nixCats-nvim

This is a kickstarter style neovim repo, where you put in your lua and the rigging for nixos options and the project specific packages and stuff is done for you just by putting you plugins in arbitrary categories and enabling them or not per package.

Then in the lua, you can add an if statement that says, if this package is included, also set up this thing. Simply require('nixCats').categoryname

You can do a lot more than that with nixCats but that's the basics. Its actually an entire communication system from nix to lua.The plugin for that is called nixCats and you can access it whenever you want in your neovim config. It has in-editor help that will explain.

Now the final outputs of the flake.nix that you interact with are much cleaner.

Importing overlays defined in other people's versions of nixCats is now easier.

More information is now accessible to categoryDefinitions set.

Help has been updated as well to match all changes.

No further updates planned, outside of running nix flake update,and monitoring breaking changes of any nvim plugins the flake has

By the way, the name stands for nix categories. It is for making categories of plugins/lsps/whatever that then becomes nixOS options and stuff and can be included in different packages for project specific direnv stuff. All while staying simple and mostly in lua.

READ THE DOCS :help nixCats.*

I have put effort into making sure it has all the capabilities I can possibly think of in terms of nix, without impacting the simplicity of the flake.nix file. Please let me know if there are more options related to either the legacy wrapper or the new wrapper for neovim that I should make into categories, I have a function for doing that and could do it in 2-6 lines if asked, and do so without it being a breaking change. That being said, if its the new wrapper, I'm probably just going to tell you to put it in your wrapper args pass through section in your category definitions because that just directly sends things to the new wrapper but by category.

submitted by /u/no_brains101

[link] [comments]

view this post on Zulip Zapier (Dec 03 2023 at 12:23):

What means "reproducible" for NixOS?

Date: 2023-12-02T17:58:32+00:00
Link: https://old.reddit.com/r/NixOS/comments/18996ty/what_means_reproducible_for_nixos/

Does "reproducible" for NixOS means that all binaries (OS and packages) can be reproduced from sources by anybody else and they will have same hash as binaries that are produced by NixOS team?

submitted by /u/Alex_df_300

[link] [comments]

view this post on Zulip Zapier (Dec 03 2023 at 17:25):

I'm loving NixOS

Date: 2023-12-03T16:00:41+00:00
Link: https://old.reddit.com/r/NixOS/comments/189whj1/im_loving_nixos/

So, until recently I knew nothing about nix or NixOS other than seeing occasional references to it on social media, or a note about using it to install something in some random project's README...

Then a few days before Thanksgiving I saw a social media thread where the OP had asked people why they like nix, and I spent a while reading responses and got more and more interested, and... Well, I jumped down that rabbit's hole.

So, now, a few weeks later I've reinstalled my laptop, desktop and home server using a shared config in a git repo. I am also working on getting a few macs using nix and home-manager as well, and will be reinstalling my kids' computers shortly as well.

Anyway, this morning I ran into an issue. I had previously had the backlight working properly on my laptop, but somehow something I had changed in my configuration had broken that and I hadn't noticed. I'm not sure how long it had been broken though.

So, I started digging and found that the /sys/class/backlight/intel_backlight/brightness wasn't owned by the video group as it should be. So, I googled a bit, and poked at settings and then was about to post here and ask for help when I remembered that I can just grep through the nixpkgs repo.

Anyway, a quick grep later and I realized my problem. I've been trying to move as much config as I can to home-manager (because I intend to have multiple users on my systems and I want as much as my config as possible to run on mac as well). So, as part of that effort I replaced programs.light.enable = true; with home.packages = [ pkgs.light ];

The latter got me the program, but didn't turn on the matching udev rules. So, I added the original line back. I'm fine with that now that I understand why that needs to be in the system config and not a user config.

Anyway, this was just me trying to say how much I love this system, because it is all built on the same concepts. Yes, the concepts are complex but they are logical and once you understand them you can understand the entire OS. It is turtles all the way down.

tldr; I love NixOS and thought you should know.

submitted by /u/_minego

[link] [comments]

view this post on Zulip Zapier (Dec 03 2023 at 19:22):

why is modern nixos better? am i missing something?

Date: 2023-12-03T16:24:33+00:00
Link: https://old.reddit.com/r/NixOS/comments/189wzne/why_is_modern_nixos_better_am_i_missing_something/

i've been using it for a few weeks now, and it seems as though everyone uses home-manager and flakes. i don't get the benefits of both uses, i mostly use it just like i used my arch and debian systems but every package and system setting i have is declared in configuration.nix for it to be a lot cleaner, easier to fix and comprehensible. is there something im missing?

submitted by /u/qwool1337

[link] [comments]

view this post on Zulip Zapier (Dec 04 2023 at 03:22):

Advent of Code, nix style?

Date: 2023-12-04T00:37:13+00:00
Link: https://old.reddit.com/r/NixOS/comments/18a7yz2/advent_of_code_nix_style/

Anyone doing advent of code and using nix to manage the projects? Well, I am! I think advent can be a great promotional time for nix because a lot of people are solving the exact same problem at the same time, and we get curious to see and run others' solutions.

But the problem here is running the other solutions --- it's too much bother to do it, unless you have nix! I mean I'd love to run other people's solutions in different language, but only if the cost is low, like running a flake from someone's git repo.

So in that spirit, here's my advent repo, powered by nix. The readme should be sufficient to get going. If anyone else is up for this, I'd love to run your solutions too!

https://github.com/idrisr/advent2023

submitted by /u/hippoyd

[link] [comments]

view this post on Zulip Zapier (Dec 04 2023 at 05:10):

What are the upsides of using Home Manager?

Date: 2023-12-03T16:19:20+00:00
Link: https://old.reddit.com/r/NixOS/comments/189wvnf/what_are_the_upsides_of_using_home_manager/

So I've been reading and experimenting on NixOS, and love the ability to define my OS as a config file rather than having to write a setup script to get my system up and running how I want it.

Recently I stumbled upon Home Manager, and maybe It's just me but I don't really understand what are the upsides of using it.

The main selling point seems to be that it lets you set your configuration files declaratively.

But config file are already declarative, so why should I choose to write my config files in a way that only works with Home Manager when I can just write (and re-use) config files like we've always done and have them working anywhere by default?

What am I missing?

submitted by /u/GloriousParrot75

[link] [comments]

view this post on Zulip Zapier (Dec 04 2023 at 20:14):

(Noob question) Which version of nixpkgs does a command like "nix run nixpkgs#hello" refer to?

Date: 2023-12-04T13:30:02+00:00
Link: https://old.reddit.com/r/NixOS/comments/18ak81y/noob_question_which_version_of_nixpkgs_does_a/

For a long time, I assumed that when I ran "nix run nixpkgs#...", I was referring to the Nix channel named "nixpkgs" on my system. However, now that I've completely converted my NixOS configs to a flake, I've deleted my Nix channels, and this command still works.

This makes me wonder, which version of nixpkgs does this resolve to? Does it just fetch the most recent version from GitHub?

submitted by /u/codemonkey1991

[link] [comments]

view this post on Zulip Zapier (Dec 05 2023 at 00:23):

Trouble getting mullvad vpn working on 24.05.20231129.e92039b (Uakari)

Date: 2023-12-04T20:21:53+00:00
Link: https://old.reddit.com/r/NixOS/comments/18atao4/trouble_getting_mullvad_vpn_working_on/

Hey everyone,

I have been having some trouble getting mullvad vpn to work on the latest version of nixos and I need some help.

​

systemctl status mullvadvpn-daemon.

nixos-version

The following is my github repo where the code is hosted: https://github.com/morphykuffour/nix.git

This is a link to the actual module for mullvadvpn:

https://github.com/morphykuffour/nix/blob/main/modules/mullvad/default.nix

​

mullvadvpn config

Is there a version of nixos which mullvad works on if so maybe I can switch to that? the service according to systemd starts and stops. I need some help debugging. Any help would greatly be appreciated.

submitted by /u/JediMasterMorphy

[link] [comments]

view this post on Zulip Zapier (Dec 05 2023 at 02:20):

How to use/test KDE Plasma 6 - Click the Nix Flake hyperlink

Date: 2023-12-03T22:17:36+00:00
Link: https://old.reddit.com/r/NixOS/comments/18a5063/how_to_usetest_kde_plasma_6_click_the_nix_flake/

submitted by /u/MySpermIs-Unvaxxd-01

[link] [comments]

view this post on Zulip Zapier (Dec 05 2023 at 05:18):

Efficient Nix Derivations with File Sets

Date: 2023-12-05T02:58:26+00:00
Link: https://old.reddit.com/r/NixOS/comments/18b20rd/efficient_nix_derivations_with_file_sets/

submitted by /u/arashinoshizukesa

[link] [comments]

view this post on Zulip Zapier (Dec 05 2023 at 10:22):

why is the nixos installation manual instructing to imperatively add a user instead of declaratively adding one in the configuration.nix?

Date: 2023-12-05T06:32:28+00:00
Link: https://old.reddit.com/r/NixOS/comments/18b5v34/why_is_the_nixos_installation_manual_instructing/

submitted by /u/MySpermIs-Unvaxxd-01

[link] [comments]

view this post on Zulip Zapier (Dec 06 2023 at 03:10):

I need a good point to start

Date: 2023-12-03T21:32:06+00:00
Link: https://old.reddit.com/r/NixOS/comments/18a3yko/i_need_a_good_point_to_start/

I want to rewrite my dotfiles in nix to use them in conjunction with home-manager outside nixos (other linux/darwin)

I made a research and found a couple of resources to start:

What do you recommend as an entry point and so on to understand how to write and manage dotfiles in nix?

submitted by /u/xrabbit

[link] [comments]

view this post on Zulip Zapier (Dec 06 2023 at 04:12):

Nix flakes + IDE integration?

Date: 2023-12-05T14:47:00+00:00
Link: https://old.reddit.com/r/NixOS/comments/18bdjse/nix_flakes_ide_integration/

Hey!

I'm curious how nix flakes work together with developer specific tools. I want to use nix to set up common tooling (linting, build, lsp) amongst my team members. However, I would also like people to remain autonomous in their choice of editor and ideally they shouldn't need to touch the nix flake for their IDE setup.

Is this something Nix supports? I.E. can I access the lsp server run by nix with my vim editor, and someone else can access it using vscode without touching the nix flake?

submitted by /u/XzwordfeudzX

[link] [comments]

view this post on Zulip Zapier (Dec 06 2023 at 13:19):

Announcing our Nix clone of the CNCF landscape, landscape.nixlang.wiki

Date: 2023-12-06T10:54:45+00:00
Link: https://old.reddit.com/r/NixOS/comments/18c1go7/announcing_our_nix_clone_of_the_cncf_landscape/

I’m happy to announce https://landscape.nixlang.wiki/ , a daughter project of https://nixlang.wiki , aiming to map the various Nix and Nix adjacent projects, and make them easier for beginners to discover.

The project is based on landscape2, the upcoming rust version of the CNCF landscape, of which we maintain our own fork with some changes GitHub - nixlang-wiki/landscape2: Landscape2 is a tool that generates interactive landscapes websites .

While the project is still early in its development cycle, it’s no longer in its infancy, and we believe that most people should be able to contribute additions to the landscape at this point, and if not, we’ll gladly receive issues with suggestions and see what we can do at GitHub - nixlang-wiki/nixos-landscape: The Landscape of NixOS and associated projects .

We hope to see your contributions, and can’t wait to see how the landscape will look once it gets filled out.

submitted by /u/cafkafk

[link] [comments]

view this post on Zulip Zapier (Dec 06 2023 at 14:25):

Why is Waybar under programs but Polybar under services in home manager?

Date: 2023-12-03T23:39:36+00:00
Link: https://old.reddit.com/r/NixOS/comments/18a6sgc/why_is_waybar_under_programs_but_polybar_under/

https://mipmip.github.io/home-manager-option-search/?query=polybar

vs

https://mipmip.github.io/home-manager-option-search/?query=waybar

submitted by /u/SitAndWatchA24

[link] [comments]

view this post on Zulip Zapier (Dec 06 2023 at 14:25):

Operation not permitted during install

Date: 2023-12-03T08:08:50+00:00
Link: https://old.reddit.com/r/NixOS/comments/189oyak/operation_not_permitted_during_install/

Hi all, brand new to NixOS here. While following the NixOS installation guide: https://nixos.wiki/wiki/NixOS_Installation_Guide , it throws this error when I run nixos-install:

copying channel...

error: changing ownership of path '/mnt/nix/store': Operation not permitted

As you can see from the screenshots below, I've already tried running it directly as root. I performed the steps provided in the instructions except I did not make a swap file or label the partitions.

Platform: VirtualBox

HW specs (virtual): 2 CPUs w/ 5Gb of RAM

Any ideas on how to fix this? Does it have anything to do with the fact /mnt/boot was formatted to VFAT?

https://preview.redd.it/l5y0kl4ye14c1.png?width=1440&format=png&auto=webp&s=ebfaf861ef68b4be6aa2ed4d0366bf7d0b0c8653

https://preview.redd.it/fmtxn376f14c1.png?width=1440&format=png&auto=webp&s=4829a6e420096178b300c8f636029519611bbe55

https://preview.redd.it/3ep60ph8f14c1.png?width=1440&format=png&auto=webp&s=ada7cd5aa17ba63060d2f11a66c3257839e0e2cd

submitted by /u/I_hit_my_sister

[link] [comments]

view this post on Zulip Zapier (Dec 06 2023 at 22:11):

Does NixOs have something similar to archinstall for automated installation?

Date: 2023-12-06T18:16:05+00:00
Link: https://old.reddit.com/r/NixOS/comments/18ca9fr/does_nixos_have_something_similar_to_archinstall/

SOLVED PS: thank for the help, everyone!

submitted by /u/xrabbit

[link] [comments]

view this post on Zulip Zapier (Dec 07 2023 at 05:06):

system.autoUpgrade.channel

Date: 2023-12-02T17:42:00+00:00
Link: https://old.reddit.com/r/NixOS/comments/1898uci/systemautoupgradechannel/

i use this on configuration.nix

system.autoUpgrade.channel = " https://github.com/NixOS/nixpkgs/archive/master.tar.gz ";

then my channel is

nix-channel --list

nixos https://nixos.org/channels/nixos-23.11

my question:

after run nixos-rebuild boot --upgrade, does "nixos" channel automatically change to https://github.com/NixOS/nixpkgs/archive/master.tar.gz ?

​

​

submitted by /u/Legitimate_Item_9683

[link] [comments]

view this post on Zulip Zapier (Dec 07 2023 at 07:12):

Sometimes printing is completed without printing

Date: 2023-12-06T20:44:20+00:00
Link: https://old.reddit.com/r/NixOS/comments/18cdpsu/sometimes_printing_is_completed_without_printing/

I have a Brother laser printer DCP-1612W and when I print some PDFs with images the job is flagged as completed even if nothing was printed (but the printer makes some noise). Printing the same from Ubuntu works fine. In cups log I cannot find anything useful.

My print config:

{ config, pkgs, users, lib, ... }: let ip = "192.168.1.4"; model = "DCP-1612W"; in { services.printing.enable = true; programs.system-config-printer.enable = true; hardware.sane.enable = true; services.avahi = { enable = true; nssmdns = true; openFirewall = true; }; services.printing.drivers = with pkgs; [ brlaser ]; hardware.printers = { ensureDefaultPrinter = "Brother"; ensurePrinters = [{ name = "Brother"; location = "cjase"; description = "Brother ${model}"; deviceUri = "ipp://${ip}/ipp"; model = "drv:///brlaser.drv/br1600.ppd"; ppdOptions = { PageSize = "A4"; }; }]; }; hardware.sane.brscan4 = { enable = true; netDevices = { cjase = { inherit model ip; }; }; }; } cups logs:

journalctl --follow --unit=cups Dec 06 21:24:31 PereBook cupsd[177160]: Expiring subscriptions... Dec 06 21:24:31 PereBook cupsd[177160]: [Job 95] Adding start banner page "none". Dec 06 21:24:31 PereBook cupsd[177160]: [Job 95] Queued on "Brother" by "dpd-". Dec 06 21:24:31 PereBook cupsd[177160]: REQUEST localhost - - "POST /printers/Brother HTTP/1.1" 200 567 Create-Job successful-ok Dec 06 21:24:31 PereBook cupsd[177160]: [Job 95] File of type application/postscript queued by "dpd-". Dec 06 21:24:31 PereBook cupsd[177160]: [Job 95] Adding end banner page "none". Dec 06 21:24:31 PereBook cupsd[177160]: [Job 95] Started filter /nix/store/0ynxwkwr0vc021y1v0kljjdzp10vgd67-cups-progs/lib/cups/filter/gstopdf (PID 178823) Dec 06 21:24:31 PereBook cupsd[177160]: [Job 95] Started filter /nix/store/0ynxwkwr0vc021y1v0kljjdzp10vgd67-cups-progs/lib/cups/filter/pdftopdf (PID 178824) Dec 06 21:24:31 PereBook cupsd[177160]: [Job 95] Started filter /nix/store/0ynxwkwr0vc021y1v0kljjdzp10vgd67-cups-progs/lib/cups/filter/gstoraster (PID 178825) Dec 06 21:24:31 PereBook cupsd[177160]: [Job 95] Started filter /nix/store/0ynxwkwr0vc021y1v0kljjdzp10vgd67-cups-progs/lib/cups/filter/rastertobrlaser (PID 178826) Dec 06 21:24:31 PereBook cupsd[177160]: [Job 95] Started backend /nix/store/0ynxwkwr0vc021y1v0kljjdzp10vgd67-cups-progs/lib/cups/backend/ipp (PID 178827) Dec 06 21:24:31 PereBook cupsd[177160]: REQUEST localhost - - "POST /printers/Brother HTTP/1.1" 200 3542310 Send-Document successful-ok Dec 06 21:24:32 PereBook cupsd[177160]: Expiring subscriptions... Dec 06 21:24:33 PereBook cupsd[177160]: Expiring subscriptions... Dec 06 21:24:34 PereBook cupsd[177160]: Expiring subscriptions... Dec 06 21:24:35 PereBook cupsd[177160]: Expiring subscriptions... Dec 06 21:24:36 PereBook cupsd[177160]: Expiring subscriptions... Dec 06 21:24:37 PereBook cupsd[177160]: Expiring subscriptions... Dec 06 21:24:38 PereBook cupsd[177160]: Expiring subscriptions... Dec 06 21:24:39 PereBook cupsd[177160]: Expiring subscriptions... Dec 06 21:24:40 PereBook cupsd[177160]: Expiring subscriptions... Dec 06 21:24:41 PereBook cupsd[177160]: Expiring subscriptions... Dec 06 21:24:41 PereBook cupsd[177160]: Brother dpd- 95 [06/Dec/2023:21:24:41 +0100] total 1 1 localhost 2023.pdf A4 one-sided Dec 06 21:24:41 PereBook cupsd[177160]: [Job 95] Job completed. Dec 06 21:24:41 PereBook cupsd[177160]: Expiring subscriptions...

submitted by /u/DPD-

[link] [comments]

view this post on Zulip Zapier (Dec 07 2023 at 14:22):

Black screen after adding Nvidia drivers

Date: 2023-11-30T14:13:08+00:00
Link: https://old.reddit.com/r/NixOS/comments/187jgr2/black_screen_after_adding_nvidia_drivers/

Hey /r/nixos ,

Posting here in hopes somebody else has ran into this. I have nixos on my desktop which works great, however after enable nvidia drivers with this config:

services.xserver.videoDrivers = ["nvidia"]; hardware.nvidia = { modesetting.enable = true; open = false; nvidiaSettings = true; package = config.boot.kernelPackages.nvidiaPackages.beta; }; Lightdm loads fine, however after logging in my screen flashes then goes blank with only my cursor showing. Switching to another tty I can see the card in nvidia-smi, and no errors in xorg or display-manager. This is a desktop setup (i9-12900K and RTX 3070 Ti)

The desktop environment (i3) starts because I can reboot my computer blind after opening a terminal with keyboard commands.

The only thing is I can see 'Deleted GPU-0' inside my xorg log, so im currently investigating any of the generated nvidia xorg configs.

Any help would be appreciated!

submitted by /u/StartupChild

[link] [comments]

view this post on Zulip Zapier (Dec 07 2023 at 15:23):

GNOME - Cannot login after 23.11-Upgrade

Date: 2023-12-07T12:05:30+00:00
Link: https://old.reddit.com/r/NixOS/comments/18cu6jh/gnome_cannot_login_after_2311upgrade/

Yesterday I upgraded to stable channel 23.11. After that I can no longer login with any of my users. I get thrown back into the login screen.

This here is the journalctl-extract from my latest try:

Dez 07 12:57:06 flixos systemd[2229]: Starting GNOME Shell on Wayland... Dez 07 12:57:06 flixos systemd[2229]: GNOME Shell on X11 was skipped because of an unmet condition check (ConditionEnvironment=XDG_SESSION_TYPE=x11). Dez 07 12:57:06 flixos systemd[2229]: Started Application launched by gnome-session-binary. Dez 07 12:57:06 flixos dbus-daemon[2240]: [session uid=1000 pid=2240] Activating via systemd: service name='org.gtk.vfs.Daemon' unit='gvfs-daemon.service' requested by '> Dez 07 12:57:06 flixos systemd[2229]: Starting Virtual filesystem service... Dez 07 12:57:06 flixos dbus-daemon[2240]: [session uid=1000 pid=2240] Successfully activated service 'org.gtk.vfs.Daemon' Dez 07 12:57:06 flixos systemd[2229]: Started Virtual filesystem service. Dez 07 12:57:06 flixos .gnome-shell-wr[2372]: Running GNOME Shell (using mutter 45.1) as a Wayland display server Dez 07 12:57:06 flixos rtkit-daemon[1945]: Successfully made thread 2405 of process 2372 owned by '1000' RT at priority 20. Dez 07 12:57:06 flixos .gnome-shell-wr[2372]: Made thread 'KMS thread' realtime scheduled Dez 07 12:57:06 flixos .gnome-shell-wr[2372]: Device '/dev/dri/card0' prefers shadow buffer Dez 07 12:57:06 flixos systemd[2229]: [email protected]: Main process exited, code=killed, status=9/KILL Dez 07 12:57:06 flixos systemd[2229]: [email protected]: Failed with result 'signal'. Dez 07 12:57:06 flixos systemd[2229]: Failed to start GNOME Shell on Wayland. Dez 07 12:57:06 flixos systemd[2229]: [email protected]: Triggering OnFailure= dependencies. Dez 07 12:57:06 flixos systemd[2229]: Stopped target GNOME Wayland Session. Dez 07 12:57:06 flixos systemd[2229]: Stopping Virtual filesystem service... Dez 07 12:57:06 flixos systemd[2229]: Stopped target GNOME Session Manager is ready. Dez 07 12:57:06 flixos systemd[2229]: Stopped target GNOME Shell. Dez 07 12:57:06 flixos systemd[2229]: Stopping GNOME Session Manager (session: gnome)... It basically says nothing. Does someone have an idea? I reloaded my 23.05-system and it works. Currently I switched over to X11 for writing this post and debugging.

coredumpctl seems to not show anything regarding this problem. I have entries but they happened almost 2h ago.

Thank's in advance.

submitted by /u/OriginalJohann

[link] [comments]

view this post on Zulip Zapier (Dec 07 2023 at 22:15):

Can I use a later kernel?

Date: 2023-12-07T19:31:59+00:00
Link: https://old.reddit.com/r/NixOS/comments/18d3ftz/can_i_use_a_later_kernel/

I have a new Framework laptop and I've read that to run 2x32GB of memory I will need to use a kernel > 6.5. The current stable kernel is well above this but I know that NixOS is behind. (I'm still awaiting the memory so playing in a VM)

I know I can change the kernel by changing boot.kernelPackages.

Following the instructions at nixos.wiki/wiki/Linux_kernel I tried to use "nix repl" to list available kernels. However when running the "pkgs.linuxPackages" command it just threw a load of errors and I didn't get the answer to my question.

So, firstly can someone guide me to get the list of available kernels and then I can see for myself whether it is possible or not?

Alternatively, if someone was able to answer my question directly then it might put a stop to my NixOS experiment before it has begun or it might get me past the first hurdle.

submitted by /u/penguinmatt

[link] [comments]

view this post on Zulip Zapier (Dec 08 2023 at 00:20):

How to switch channel back to 23.05 from 23.11?

Date: 2023-12-07T06:00:34+00:00
Link: https://old.reddit.com/r/NixOS/comments/18cp0dy/how_to_switch_channel_back_to_2305_from_2311/

Hey! I've searched for quite a while, and couldn't really figure out what I was really looking for. I'm also quite noob so please be patient with me! Recently, I tried to install a service that was only available for 23.11, so I changed my channel and upgraded, but after upgrading it didn't really interact well with everything and caused a bunch of headaches. I don't really think it's necessary to go into all of those details, it's just not something I'm really interested in spending the time fixing. I went back to a previous build, and am going about it that way for now, but is there anyway to set the channel back to 23.05 and rebuild safely? I'm not using flakes or anything, if that's something that matters.

submitted by /u/viewtiful_

[link] [comments]

view this post on Zulip Zapier (Dec 08 2023 at 02:18):

How does the security/trustworthiness of software from nixpkgs unstable compare to the Debian or Fedora official repos?

Date: 2023-12-05T11:55:49+00:00
Link: https://old.reddit.com/r/NixOS/comments/18badxz/how_does_the_securitytrustworthiness_of_software/

My understanding of the Nix system is very surface-level; to me it's just an easy way to get rolling-release versions of almost anything on my Fedora machine without dependency hell. As I understand it, Nix manages to have so many packages because the design enables partial automation of creating and maintaining packages. So how do the Nix community's protocols for minimizing the risk of malicious packages compare to those of Fedora or Debian? Is installing from nixpkgs unstable more like installing from main repos of traditional distributions, or should a similar level of care be taken as when installing from the AUR? Has there ever been a known case of malware making it into the nix repos?

submitted by /u/DaveRubinsLeftNut

[link] [comments]

view this post on Zulip Zapier (Dec 08 2023 at 06:20):

Easy to use speech-to-text software using Nix

Date: 2023-12-07T18:53:58+00:00
Link: https://old.reddit.com/r/NixOS/comments/18d2kmt/easy_to_use_speechtotext_software_using_nix/

Hi Nix enthusiasts!

I just wanted to show you a project I’ve been working on (https://github.com/Quoteme/whisper-input ). Using this project, you are able to write text by using your voice. My main goal for this project was to be simple (as small and clean a codebase as possible), powerful (state-of-the-art speech recognition) and easy to use. I solved the last part using Nix, which I am a great fan of. Now, all you need to do to write text into any text-input using your voice is to run the following command while focusing on said text-input:

nix run github:quoteme/whisper-input This command shows you a notification that you should start speaking. Once you have started speaking, just continue speaking as long as you like and then stop when you are finished. After you have stopped speaking, the text you have said will automatically be typed using your keyboard.

I just wanted to share this here, because I am pretty amazed by how easy sharing my small little project has become by using nix :)

submitted by /u/Lalelul

[link] [comments]

view this post on Zulip Zapier (Dec 08 2023 at 11:26):

Flakes Question (because I'm a noob)

Date: 2023-12-07T20:44:36+00:00
Link: https://old.reddit.com/r/NixOS/comments/18d53s4/flakes_question_because_im_a_noob/

I've tried to wrap my head around flakes a few times and I just don't get them. I think I need to just start using them to get it to "click" in my head, but I'm not even sure how to start using them.

Are there any resources, guides, or walk-throughs that can baby-step me through the process of starting writing my own flakes, using others, or just getting the concepts down?

submitted by /u/Senkyou

[link] [comments]

view this post on Zulip Zapier (Dec 08 2023 at 15:16):

I need some tips on setting up a screen saver in NixOS and Gnome using Nix:

Date: 2023-12-08T09:51:08+00:00
Link: https://old.reddit.com/r/NixOS/comments/18djhhr/i_need_some_tips_on_setting_up_a_screen_saver_in/

I'm using NixOS and Gnome and I'm trying to setup a screen saver that randomly shuffles through dynamic wallpapers. The way I need it to work is to have a timer set so if I don't press any input such as a keyboard, mouse, or game controller, after that set time limit, the screen saver will pop up and render the randomly shuffled dynamic wallpapers, which will again randomly shuffle after a set time limit, but, if I press any input it right away goes back to the screen I was working on that way I don't have to sign in over and over again.

​

https://www.omglinux.com/dynamic-wallpapers-for-gnome-desktop/

These wallpapers look beautiful, but I'm not sure if these wallpapers can be setup in a screen saver in NixOS as well?

​

I'm doing this to help prevent screen burn in on my Samsung G8 QD OLED gaming monitor, I already have other burn in settings setup on this monitor, but I want to setup this screen saver just to be sure that I don't get burn in.

Thanks in advance for the help.

submitted by /u/zeta_00

[link] [comments]

view this post on Zulip Zapier (Dec 08 2023 at 16:26):

Why is the documentation... nowhere to be found?!

Date: 2023-12-08T15:44:23+00:00
Link: https://old.reddit.com/r/NixOS/comments/18dpl62/why_is_the_documentation_nowhere_to_be_found/

I'm trying to switch to NixOS from Arch Linux. I encountered a bunch of issues. Not a big deal - I'm used to it. I'm sure I can find the documentation for this. Or so I thought.

I'm interested in NixOS because I find the concept of having a reproducible system extremely useful. It's one of the greatest ideas I've encountered as far as operating systems go, but it's plagued by one big issue.

People claim NixOS has many problems. Some dislike the language because it's functional, others want binary compatibility with other systems etc. But none of these are as real and as off-putting (in my opinion) as the lack of good documentation.

The problems of having bad/nonexistent documentation are (beside the natural anger and frustration of new users):

Fixing issues takes a lot longer than it should - the community is very able and willing to help, don't get me wrong, but it's a lot more time-consuming to write forum posts explaining your issue to someone else or to dig through forums for answers than to search the official documentation. It's confusing - when there is no documentation, usually there are two possibilities: the task you are trying to achieve is absolutely trivial and requires no explanation or what you want is not supported. Not on NixOS. GnuPG is a great example for this. The Arch Wiki's documentation page is great and you can find it just by googling it (seriously, try it). The same cannot be said about NixOS (but I can't get it to be fully functional by just adding the package to the config and rebuilding the system). The learning curve is, as a result, much steeper. Not only is it hard to get a system up and running, it's hard to change it and use it proficiently.

So, why is the documentation terse or nonexistent? Are there any efforts to change this?

EDIT: I, personally don't think the language is a problem. I don't have enough experience with it to say this and I like the fact that it's functional. I must say, though that a general purpose programming language (Haskell, for example, or Lua if you want an easy language and don't care about it being purely declarative and functional) could be better, simply because it is also useful in other contexts.

submitted by /u/nicolasdumitru

[link] [comments]

view this post on Zulip Zapier (Dec 09 2023 at 03:12):

NixOS and mergerfs

Date: 2023-12-08T21:48:49+00:00
Link: https://old.reddit.com/r/NixOS/comments/18dxmwi/nixos_and_mergerfs/

I was just looking into mergerfs and was surprised that there was no module or specific options for it on NixOS.

I was wondering how people were configuring mergerfs on their systems. Via a systemd unit maybe?

submitted by /u/henry_tennenbaum

[link] [comments]

view this post on Zulip Zapier (Dec 09 2023 at 06:18):

What is the current recommended documentation when starting out with NixOs?

Date: 2023-12-08T18:23:15+00:00
Link: https://old.reddit.com/r/NixOS/comments/18dt2ql/what_is_the_current_recommended_documentation/

After using Arch for a few years, I would like to dive into NixOs. However, a lot of documentation I find seems to be outdated.

What is the currently recommended documentation/guide/whatever when starting out with NixOs?

submitted by /u/CerealBit

[link] [comments]

view this post on Zulip Zapier (Dec 09 2023 at 08:18):

flake-parts system config + hm

Date: 2023-12-08T07:33:48+00:00
Link: https://old.reddit.com/r/NixOS/comments/18dhmb5/flakeparts_system_config_hm/

Is there a step-by-step tutorial on how to use flake-parts for system configuration (ideally with home-manager)? The documentation is too abstract for me.

The published repos on github of people using flake-parts all look very different, and I cannot comprehend why they do things different.

submitted by /u/zeec123

[link] [comments]

view this post on Zulip Shivaraj B H (Dec 09 2023 at 21:48):

Zapier said:

Why is the documentation... nowhere to be found?!

Date: 2023-12-08T15:44:23+00:00
Link: https://old.reddit.com/r/NixOS/comments/18dpl62/why_is_the_documentation_nowhere_to_be_found/

I'm trying to switch to NixOS from Arch Linux. I encountered a bunch of issues. Not a big deal - I'm used to it. I'm sure I can find the documentation for this. Or so I thought.

I'm interested in NixOS because I find the concept of having a reproducible system extremely useful. It's one of the greatest ideas I've encountered as far as operating systems go, but it's plagued by one big issue.

People claim NixOS has many problems. Some dislike the language because it's functional, others want binary compatibility with other systems etc. But none of these are as real and as off-putting (in my opinion) as the lack of good documentation.

The problems of having bad/nonexistent documentation are (beside the natural anger and frustration of new users):

Fixing issues takes a lot longer than it should - the community is very able and willing to help, don't get me wrong, but it's a lot more time-consuming to write forum posts explaining your issue to someone else or to dig through forums for answers than to search the official documentation. It's confusing - when there is no documentation, usually there are two possibilities: the task you are trying to achieve is absolutely trivial and requires no explanation or what you want is not supported. Not on NixOS. GnuPG is a great example for this. The Arch Wiki's documentation page is great and you can find it just by googling it (seriously, try it). The same cannot be said about NixOS (but I can't get it to be fully functional by just adding the package to the config and rebuilding the system). The learning curve is, as a result, much steeper. Not only is it hard to get a system up and running, it's hard to change it and use it proficiently.

So, why is the documentation terse or nonexistent? Are there any efforts to change this?

EDIT: I, personally don't think the language is a problem. I don't have enough experience with it to say this and I like the fact that it's functional. I must say, though that a general purpose programming language (Haskell, for example, or Lua if you want an easy language and don't care about it being purely declarative and functional) could be better, simply because it is also useful in other contexts.

submitted by /u/nicolasdumitru

[link] [comments]

I have had similar complaints from friends who tried NixOS for the first time. Special emphasis on documentation and β€œwhy nix as a language? Why not Haskell?”

view this post on Zulip Zapier (Dec 10 2023 at 00:17):

NixThePlanet - Run macOS, Windows and more via a single Nix command + nixosModules

Date: 2023-12-09T21:36:17+00:00
Link: https://old.reddit.com/r/NixOS/comments/18enprc/nixtheplanet_run_macos_windows_and_more_via_a/

submitted by /u/matthew-croughan

[link] [comments]

view this post on Zulip Zapier (Dec 10 2023 at 00:17):

Composable configuration bundles?

Date: 2023-12-09T12:24:37+00:00
Link: https://old.reddit.com/r/NixOS/comments/18ecjgz/composable_configuration_bundles/

New to Nix. I've spent a few hours reading docs and looking at public dotfiles but haven't been able to answer my own question, I was hoping someone could point me in the right direction!

I'm using the flake-in-a-dotfiles-repo approach and I know I can define several configurations, say one for work, one for development, one for music, for example. This works nicely. My desire is to have composable configuration bundles that can be mixed and matched on various machines.

For example, on my home laptop, I might have music configuration (say a DAW package plus rt audio priority). I'd like to be able to add another configuration (eg rustup and emacs for Rust development) on top of it, and then remove it again when I'm done, leaving me with just the music config. If I take my work laptop on a trip, I could add the gaming config to it for the weekend. Then I need to do my day job on it again, and I can remove the gaming config to save disk space. After some work I need to publish a big PDF, so I would enable my LaTeX setup temporarily. Of course, these "subconfigurations" would have to be compatible, the work config couldn't set say different permissions for a directory to the music one if I wanted to enable both.

In case it makes it any clearer, some imaginary syntax that would make sense for this could be like

nixos-rebuild switch --flake .#music + .#latex + .#rustdev

Since this doesn't exist, is there a way to do this in NixOS? Or would I have to define each desired combination of configuration bundles separately in the flake, like defining "music+rust+gaming" as well as "music+rust", "music+gaming" etc?

Apologies if I have missed some obvious documentation somewhere.

submitted by /u/NextTimeJim

[link] [comments]

view this post on Zulip Zapier (Dec 10 2023 at 02:13):

Flickering with NVIDIA

Date: 2023-12-09T21:35:42+00:00
Link: https://old.reddit.com/r/NixOS/comments/18enpbf/flickering_with_nvidia/

Hi. I want to move over to NixOS on my laptop so I created my simple build here: https://github.com/radek-stasta/nixos

Everything looks pretty good, everything works as expected, when I use only my laptop screen. But then when I connect external HDMI monitor into my NVIDIA port, Im experiencing annoying flickering on that monitor mainly cursor when writing something or when scrolling pages. I tried several settings in NixOS and Hyprland configs, but nothing worked. Can somebody please point me the right direction how to solve it? This is the only issue I have that prevents me from fully switch to Nix. Thanks a lot for any help.

submitted by /u/RaadushS

[link] [comments]

view this post on Zulip Zapier (Dec 10 2023 at 16:15):

GNOME - Cannot login after 23.11-Upgrade

Date: 2023-12-07T12:05:30+00:00
Link: https://old.reddit.com/r/NixOS/comments/18cu6jh/gnome_cannot_login_after_2311upgrade/

Yesterday I upgraded to stable channel 23.11. After that I can no longer login with any of my users. I get thrown back into the login screen.

This here is the journalctl-extract from my latest try:

Dez 07 12:57:06 flixos systemd[2229]: Starting GNOME Shell on Wayland... Dez 07 12:57:06 flixos systemd[2229]: GNOME Shell on X11 was skipped because of an unmet condition check (ConditionEnvironment=XDG_SESSION_TYPE=x11). Dez 07 12:57:06 flixos systemd[2229]: Started Application launched by gnome-session-binary. Dez 07 12:57:06 flixos dbus-daemon[2240]: [session uid=1000 pid=2240] Activating via systemd: service name='org.gtk.vfs.Daemon' unit='gvfs-daemon.service' requested by '> Dez 07 12:57:06 flixos systemd[2229]: Starting Virtual filesystem service... Dez 07 12:57:06 flixos dbus-daemon[2240]: [session uid=1000 pid=2240] Successfully activated service 'org.gtk.vfs.Daemon' Dez 07 12:57:06 flixos systemd[2229]: Started Virtual filesystem service. Dez 07 12:57:06 flixos .gnome-shell-wr[2372]: Running GNOME Shell (using mutter 45.1) as a Wayland display server Dez 07 12:57:06 flixos rtkit-daemon[1945]: Successfully made thread 2405 of process 2372 owned by '1000' RT at priority 20. Dez 07 12:57:06 flixos .gnome-shell-wr[2372]: Made thread 'KMS thread' realtime scheduled Dez 07 12:57:06 flixos .gnome-shell-wr[2372]: Device '/dev/dri/card0' prefers shadow buffer Dez 07 12:57:06 flixos systemd[2229]: [email protected]: Main process exited, code=killed, status=9/KILL Dez 07 12:57:06 flixos systemd[2229]: [email protected]: Failed with result 'signal'. Dez 07 12:57:06 flixos systemd[2229]: Failed to start GNOME Shell on Wayland. Dez 07 12:57:06 flixos systemd[2229]: [email protected]: Triggering OnFailure= dependencies. Dez 07 12:57:06 flixos systemd[2229]: Stopped target GNOME Wayland Session. Dez 07 12:57:06 flixos systemd[2229]: Stopping Virtual filesystem service... Dez 07 12:57:06 flixos systemd[2229]: Stopped target GNOME Session Manager is ready. Dez 07 12:57:06 flixos systemd[2229]: Stopped target GNOME Shell. Dez 07 12:57:06 flixos systemd[2229]: Stopping GNOME Session Manager (session: gnome)... It basically says nothing. Does someone have an idea? I reloaded my 23.05-system and it works. Currently I switched over to X11 for writing this post and debugging.

coredumpctl seems to not show anything regarding this problem. I have entries but they happened almost 2h ago.

Thank's in advance.

submitted by /u/OriginalJohann

[link] [comments]

view this post on Zulip Zapier (Dec 10 2023 at 17:15):

(Noob question) Which version of nixpkgs does a command like "nix run nixpkgs#hello" refer to?

Date: 2023-12-04T13:30:02+00:00
Link: https://old.reddit.com/r/NixOS/comments/18ak81y/noob_question_which_version_of_nixpkgs_does_a/

For a long time, I assumed that when I ran "nix run nixpkgs#...", I was referring to the Nix channel named "nixpkgs" on my system. However, now that I've completely converted my NixOS configs to a flake, I've deleted my Nix channels, and this command still works.

This makes me wonder, which version of nixpkgs does this resolve to? Does it just fetch the most recent version from GitHub?

submitted by /u/codemonkey1991

[link] [comments]

view this post on Zulip Zapier (Dec 11 2023 at 01:15):

Ultimate NixOS Guide | Flakes | Home-manager

Date: 2023-12-10T19:47:48+00:00
Link: https://old.reddit.com/r/NixOS/comments/18fbmv9/ultimate_nixos_guide_flakes_homemanager/

submitted by /u/Goxore

[link] [comments]

view this post on Zulip Zapier (Dec 11 2023 at 14:18):

Nix flakes + IDE integration?

Date: 2023-12-05T14:47:00+00:00
Link: https://old.reddit.com/r/NixOS/comments/18bdjse/nix_flakes_ide_integration/

Hey!

I'm curious how nix flakes work together with developer specific tools. I want to use nix to set up common tooling (linting, build, lsp) amongst my team members. However, I would also like people to remain autonomous in their choice of editor and ideally they shouldn't need to touch the nix flake for their IDE setup.

Is this something Nix supports? I.E. can I access the lsp server run by nix with my vim editor, and someone else can access it using vscode without touching the nix flake?

submitted by /u/XzwordfeudzX

[link] [comments]

view this post on Zulip Zapier (Dec 11 2023 at 19:16):

Install NixOS with Flake configuration on Git

Date: 2023-12-11T15:27:23+00:00
Link: https://old.reddit.com/r/NixOS/comments/18fx2bn/install_nixos_with_flake_configuration_on_git/

submitted by /u/shivaraj-bh

[link] [comments]

view this post on Zulip Zapier (Dec 12 2023 at 03:19):

nixCats-nvim: v3.0.0 nixOS and homeCats

Date: 2023-12-11T15:47:57+00:00
Link: https://old.reddit.com/r/NixOS/comments/18fxiwm/nixcatsnvim_v300_nixos_and_homecats/

How do you configure neovim from nix? People talk about project specific packages, do they

really make entirely new flakes for every project, or all use nixVim? Well, yeah, they did. But not anymore!! Now you can use your own lua, and still have all that.

https://github.com/BirdeeHub/nixCats-nvim

now additionally outputs actual home manager and nixos modules generated from your lua and categories rather than just options for other flakes.

now exports templates to make the entire process as easy as possible.

Its approaching a "build-your-own nixVim without leaving lua" utility.

nix flake init -t github:BirdeeHub/nixCats-nvim right in your lua directory,

nix shell github:BirdeeHub/nixCats-nvim to access the editor, view the help, and set up your flake!

download plugins and put them in categories, require('nixCats') and check if the category is enabled, create settings profiles, enable categories and settings per package. Choose a default package. Everything else is done for you.

It has EXTENSIVE in editor help and 3 extra example templates. Please use the info I have provided it will make your life easier.

submitted by /u/no_brains101

[link] [comments]

view this post on Zulip Zapier (Dec 12 2023 at 04:19):

I'm not sold on home-manager

Date: 2023-12-11T20:53:58+00:00
Link: https://old.reddit.com/r/NixOS/comments/18g3x2x/im_not_sold_on_homemanager/

I just finished rewriting most of my dotfiles into home-manager and I don't see why I should use it over plain and simple dotfiles.

I manage my dotfiles in a git repository (without any other tooling) and I believe it's far superior than using home-manager. Which benefits does home-manager come with? I still ended up copying 70% of my dotfiles into .extraConfig or .settings because the home-manager doesn't expose the options I actually need. On top of that, sometimes I need to provide multi-line strings (which match the original dotfiles), sometimes it's a map, sometimes it's json etc. so I can't even copy and paste my vanilla dotfiles into home-manager, but have to adapt them just to let home-manager generate me the original dotfile after running it...

Instead, I can use the fetchGit function, which pulls my dotfile directory and places it into .config/ while keeping everything vanilla and easy to maintain.

What are you using home-manager for? I'm curious about the reasons why somebody would introduce a complete layer of complexity for such tasks and which benefit home-manager brings.

​

submitted by /u/CerealBit

[link] [comments]

view this post on Zulip Zapier (Dec 12 2023 at 09:18):

Reflecting on why I use flakes

Date: 2023-12-12T00:42:35+00:00
Link: https://old.reddit.com/r/NixOS/comments/18g96i6/reflecting_on_why_i_use_flakes/

I've been using NixOS for 1.5 years now, and several recent posts here about "Why flakes?" got me thinking.

What flakes bring to the table is reproducibility. But, while that makes a lot of sense for dev shells, on my main system (with some rare exceptions) I just want the latest versions. Channels are perfect for that.

So, I realized that the actual reason I use flakes is how the guides are written.

The flakes guides generally suggest having a single git repo that contains all your configurations in one place - usually a remote copy online, and a local one in your home folder.

By contrast, channel guides generally toll you to place your configuration in /etc/nixos . This means - to a new user - separate configs for each machine, separate config for NixOS and home-manager (if you're using it standalone), multiple git repos, no code reuability, having to use root to edit the files, etc.

Now, with more experience, I know that I can have a single repo for all my configs even with channels, place it in my home folder with user permissions, and achieve the same convenience and code reusability as with flakes. I just need to set an environment variable to point to the right file.

So, that leaves me with only two minor advantages of flakes - some third party repos are distributed as flakes only, and they automatically manage hashes for inputs. But overall - it came down not to capabilities, but to the way they're typically used in in the tutorials. And perhaps some bias towards the bleeding edge (unstable ftw).

submitted by /u/lily_34

[link] [comments]

view this post on Zulip Zapier (Dec 13 2023 at 11:20):

Creating an iso of a flake+home-manager configuration

Date: 2023-12-12T11:58:54+00:00
Link: https://old.reddit.com/r/NixOS/comments/18gkafh/creating_an_iso_of_a_flakehomemanager/

Hi, fairly new to Nix and NixOS but I’ve made myself a pretty decent flake and home-manager based configuration for both desktop and server use.

I understand it’s possible to output the configuration from the flake to an iso, but is it also possible to do that with home manager as a module of the flake config?

I want to be able to spin up quick virtual machine environments for whatever I need them for, without having to go through the clone and rebuild process every time.

Thanks!

submitted by /u/jortsboy

[link] [comments]

view this post on Zulip Zapier (Dec 13 2023 at 20:20):

Accessing NixOS through RealVNC.

Date: 2023-12-12T13:54:07+00:00
Link: https://old.reddit.com/r/NixOS/comments/18gmdno/accessing_nixos_through_realvnc/

Hello. I am a newbie to NixOS and would like to access my raspberry pi (which is NixOS installed in it) remotely by using RealVNC or any other RDP solution. So far i tried installing TightVNC but somehow i couldnt connect it. Are there any tutorials around so i can follow?

Thanks

submitted by /u/orucreiss

[link] [comments]

view this post on Zulip Zapier (Dec 14 2023 at 03:10):

Thinking of switching into NixOS

Date: 2023-12-13T20:36:55+00:00
Link: https://old.reddit.com/r/NixOS/comments/18hqier/thinking_of_switching_into_nixos/

I am using endeavourOS, I have a laptop with amd igpu and nvidia gpu. I use it with external monitor. I want to switch to NixOS, I do a bit of development and do some gaming like sekiro, witcher 3, cs2. I really like the concept of NixOS. Is it wise to switch to Nix or should I stick to my current distro?

submitted by /u/arman39

[link] [comments]

view this post on Zulip Zapier (Dec 14 2023 at 16:19):

So I have installed NixOS and setup everything I needed

Date: 2023-12-14T11:58:52+00:00
Link: https://old.reddit.com/r/NixOS/comments/18i73d8/so_i_have_installed_nixos_and_setup_everything_i/

Yesterday I made a post that should I move to nixos on my main machine or not. Many people suggested me to do and some suggested me to first use it on VM. I directly installed on my main machine. And tbh, I am very happy, Nvidia prime and all the stuff works flawlessly. Nix package manger is very good and huge. Already loving it. And that config file for software and hardware. It's like finally I own my own PC. I have used, arch based distro, debian based distro and rpm, zypper. All of them felt kinda same. But this thing is something different and cool and good. And lastly I think the system cannot break at all. The generation thing makes it solid.

submitted by /u/arman39

[link] [comments]

view this post on Zulip Zapier (Dec 15 2023 at 06:22):

Digging on Nix OS! still trying to wrap my head around it, but I really like it.

Date: 2023-12-14T23:19:30+00:00
Link: https://old.reddit.com/r/NixOS/comments/18ilppy/digging_on_nix_os_still_trying_to_wrap_my_head/

submitted by /u/Arch-penguin

[link] [comments]

view this post on Zulip Zapier (Dec 15 2023 at 07:25):

There was a YouTuber that claimed there is big money to be has as a NixOS engineer, on the order of 200K or higher. But I am not seeing the job postings anywhere. So is it BS?

Date: 2023-12-15T01:13:29+00:00
Link: https://old.reddit.com/r/NixOS/comments/18io2sm/there_was_a_youtuber_that_claimed_there_is_big/

What I have seen are reqs that might use NixOS as a small part of their infrastructure, but also demanding many other skills, like Haskell. And apparently NixOS is not well known in the US....

I guess there is BS to go all around.

And please excuse the typo in the title.

submitted by /u/el_toro_2022

[link] [comments]

view this post on Zulip Zapier (Dec 15 2023 at 18:13):

korora: A tiny & fast type system for Nix in Nix

Date: 2023-12-15T02:33:39+00:00
Link: https://old.reddit.com/r/NixOS/comments/18ipmpe/korora_a_tiny_fast_type_system_for_nix_in_nix/

submitted by /u/adisbladis

[link] [comments]

view this post on Zulip Zapier (Dec 16 2023 at 18:10):

I want to adopt NixOS

Date: 2023-12-15T17:36:07+00:00
Link: https://old.reddit.com/r/NixOS/comments/18j5irh/i_want_to_adopt_nixos/

I am application (domain) developer and i have computer engineering graduate level base.

While developing the domain-level application, i noticed that i miss many operating system level stuff like Linux.

I also have big tendency toward functional programming paradigm.

As for my question, i want to buy a second-hand cheap computer and i want to build my world there. What should be minimum requirements for the computer to install NixOS?

submitted by /u/_commitment

[link] [comments]

view this post on Zulip Zapier (Dec 18 2023 at 02:18):

How can I install a specific version of a package?

Date: 2023-12-17T11:02:16+00:00
Link: https://old.reddit.com/r/NixOS/comments/18kf0xe/how_can_i_install_a_specific_version_of_a_package/

I would like to install this package . The package references v0.3.1, but I would like to pull from master instead, as it includes some new features which I would like to use.

How can I achieve that? Can I somehow upgrade the package myself, in order to make master available to other people (looks like the package author won't release a new version soon, given the history )? What is the usual approach (create a new package instead, which always pulls from master)?

submitted by /u/CerealBit

[link] [comments]

view this post on Zulip Zapier (Dec 19 2023 at 01:10):

nix-serve behavior questions

Date: 2023-12-12T11:04:56+00:00
Link: https://old.reddit.com/r/NixOS/comments/18gjghs/nixserve_behavior_questions/

So, yesterday I decided to try and run a binary cache on my local network to understand better how it works.

Per my understanding, nix-serve will only serve files already on the nix store of the machine that's running it, is that correct?

Is it possible to make it so that, if any machine requests it, it tries to get it from another cache?

Or, for things like nixos-rebuild to publish the newly installed packages there automatically?

Thank you!

PS: I'm fairly new to nix

submitted by /u/caarlos0

[link] [comments]

view this post on Zulip Zapier (Dec 19 2023 at 03:23):

Generating an ISO with my entire system configuration inside it

Date: 2023-12-18T20:39:58+00:00
Link: https://old.reddit.com/r/NixOS/comments/18lixd3/generating_an_iso_with_my_entire_system/

I am creating a NixOS install ISO using nixos-generators . My goal is to have as much configuration as possible inside the ISO at install time, so that I don't have to clone anything manually within the live environment. I want to be able to do the bare minimum of machine-specific stuff (setting up disk partitions, etc.), put a pre-built config in place at /etc/nixos/configuration.nix, and then install NixOS onto the boot drive per usual. After the first reboot, my complete system configuration and home-manager setup should be in place.

Making the configuration machine-agnostic I can handle on my own. There are plenty of examples out there to follow. But how do I get it into the ISO in the first place?

Basically, I'm looking for the equivalent of Docker's COPY . I don't care where in the ISO filesystem it gets copied to, as long as it's in a consistent (i.e. scriptable) location.

Here is my setup:

flake.nix { description = "Builds a NixOS installer ISO with some useful stuff in it.";

inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; nixos-generators = { url = "github:nix-community/nixos-generators"; }; };

outputs = { self, nixpkgs, nixos-generators, ... }: let system = "x86_64-linux"; in { packages.${system}.default = nixos-generators.nixosGenerate { system = system; format = "install-iso"; modules = [ ./iso.nix ]; }; }; }

iso.nix {config, pkgs, ...}:

{ system.stateVersion = "23.11";

environment.systemPackages = with pkgs; [ cowsay neovim git ]; } ```

Building an ISO is then just a simple nix build , and I can boot into it and have git etc. there, as you'd expect. I just can't figure out how to copy my system config and home-manager stuff into the ISO.

I considered adding a line like

(writeShellScriptBin "configure" (builtins.readFile ./configure.sh))

to the systemPackages in iso.nix, where the contents of configure.sh would just echo (entire system config) > /etc/nixos/configuration.nix , but this seems roundabout and kinda hacky.

FWIW, I intend this entire workflow to be built into my dotfiles repo, which itself will be one big flake. So the (machine-agnostic) configuration.nix itself will be inside the same flake/repo.

submitted by /u/acobster

[link] [comments]


view this post on Zulip Zapier (Dec 19 2023 at 12:11):

Looking for starter config similar to "Sway Setup for EndeavourOS" or "kickstart.nvim"

Date: 2023-12-18T05:02:21+00:00
Link: https://old.reddit.com/r/NixOS/comments/18l0rsx/looking_for_starter_config_similar_to_sway_setup/

TL;DR: Any similar nixos config to Sway Setup for EndeavourOS or kickstart.nvim to help new users getting started? I want a decent nixos config for sway with sensible defaults (flakes?).

Hello! Hope you're doing well. Thank you for looking this issue of mine.

Before fully switching to archlinux, I started off with EndeavourOS with Sway Setup for EndeavourOS . It provides a very good starting config for sway: sensible directory structure and defaults. Similarly, if someone wants to get started with nvim config, kickstart.nvim is a very nice jumping point.

I'm looking for something similar like the two above to get started with nixos.

Any input is much appreciated. Thank you.

submitted by /u/StarshipN0va

[link] [comments]

view this post on Zulip Zapier (Dec 19 2023 at 14:20):

Cleanest way to run git commands on fresh nixos machine?

Date: 2023-12-16T19:16:20+00:00
Link: https://old.reddit.com/r/NixOS/comments/18jyd0r/cleanest_way_to_run_git_commands_on_fresh_nixos/

so imagine the scenario, we have a fresh install of nixos on a machine and want to pull an existing flake from github. This means that you need git installed.What is the most non intrusive/cleanest way of running git commands without using nix shell or installing via nix-env -i. i have read that you can run an apps commands in nix via a github link, including in this link .Can anyone share an example of how they use git on a brand new nixos machine that doesn't involve installation or shells?

Edit: I am still struggling as the nix run github: approach needs to have flakes installed, which needs git to pull. so there is chicken and egg problem here. i guess maybe the cleanest way is to use nix flake init and then some git pull using nix run?

Update: this has also been raised previously here . i like the way the author articulates it as 'treating flakes as a first class citizen'. his post seems to have been upvoted a few times too. ultimately it's about giving the users what they want, i understand including it will increase the minimal ISO by about 4% (40MB on ~850MB) but i think given the prominence of flakes now it would be justified.

Current Solution It's a bit messy but here is what is currently needed to setup a flake on fresh machine without having to rebuild the system with git or use a temporary shell. Don't forget to update hardware-configuration.nix if overwritten by nix flake clone.

export NIX_CONFIG="experimental-features = nix-command flakes" nix shell nixpkgs#git --command nix flake clone github:username/repo --dest ~/.n nix shell nixpkgs#git --command sudo nixos-rebuild switch --flake ~/.n#systemname As mentioned above, would be great if git was pre-installed on the minimal ISO to avoid the prefix of nix shell nixpkgs#git --command. Hopefully this is something that can be considered in future releases.

submitted by /u/mars0008

[link] [comments]

view this post on Zulip Zapier (Dec 19 2023 at 20:13):

Too stupid to figure out how to use nixos-hardware with flakes

Date: 2023-12-19T16:40:27+00:00
Link: https://old.reddit.com/r/NixOS/comments/18m67ew/too_stupid_to_figure_out_how_to_use_nixoshardware/

flake.nix :

{ description = "NixOS Flake"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11"; nixos-hardware.url = "github:NixOS/nixos-hardware/master"; home-manager = { url = "github:nix-community/home-manager/release-23.11"; inputs.nixpkgs.follows = "nixpkgs"; }; }; outputs = { self, nixpkgs, nixos-hardware, ... }@inputs: { nixosConfigurations = { "zephyrus" = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; specialArgs = inputs; modules = [ ./configuration.nix ]; }; }; }; } configuration.nix (partial)

{ config, pkgs, inputs, ... }: { nix = { package = pkgs.nixUnstable; extraOptions = '' experimental-features = nix-command flakes ''; }; imports = [ # Include the results of the hardware scan. ./hardware-configuration.nix # Additional hardware specific configuration # inputs.nixos-hardware.nixosModules.common.cpu.amd.pstate inputs.nixos-hardware.nixosModules.common.gpu.amd inputs.nixos-hardware.nixosModules.common.pc.ssd inputs.nixos-hardware.nixosModules.asus.battery ]; # ...https://github.com/NixOS/nixos-hardware And for all this I get

error: … while calling the 'seq' builtin at /nix/store/gkrvrwg6k60ykz4asv35bdj1wz70ik2l-source/lib/modules.nix:320:18: 319| options = checked options; 320| config = checked (removeAttrs config [ "_module" ]); | ^ 321| _module = checked (config._module); … while evaluating a branch condition at /nix/store/gkrvrwg6k60ykz4asv35bdj1wz70ik2l-source/lib/modules.nix:261:9: 260| checkUnmatched = 261| if config._module.check && config._module.freeformType == null && merged.unmatchedDefns != [] then | ^ 262| let (stack trace truncated; use '--show-trace' to show the full trace) error: infinite recursion encountered at /nix/store/gkrvrwg6k60ykz4asv35bdj1wz70ik2l-source/lib/modules.nix:506:28: 505| builtins.addErrorContext (context name) 506| (args.${name} or config._module.args.${name}) | ^ 507| ) (lib.functionArgs f); make: *** [Makefile:8: install] Error 1 Is it really that hard to import a module, or I am just stupid?

submitted by /u/arvigeus

[link] [comments]

view this post on Zulip Zapier (Dec 20 2023 at 21:11):

Brother printer drivers

Date: 2023-12-19T10:02:39+00:00
Link: https://old.reddit.com/r/NixOS/comments/18lyfrk/brother_printer_drivers/

Part of my workflow is sending faxes (I'm not kidding) and I usually do it straight from my computer through my Brother printer, MFC-L2710DW to be exact, which is connected to a phone line.

Brother provides fax drivers for Linux in deb and rpm formats only. Here's my model: https://support.brother.com/g/b/faqend.aspx?prod=mfcl2710dw_us_eu_as&c=eu_ot&lang=en&faqid=faq00100716_000

I also have a pkg.tar.zst file, for installation on Arch-based distros, that someone graciously compiled for me.

What can I do for NixOS?

submitted by /u/shmuu26

[link] [comments]

view this post on Zulip Zapier (Dec 21 2023 at 08:15):

What is the actual state of NixOS nowadays?

Date: 2023-12-21T06:09:01+00:00
Link: https://old.reddit.com/r/NixOS/comments/18ng3i9/what_is_the_actual_state_of_nixos_nowadays/

Dear NixOS community, I hope this pretty generic post won't bother the sub. I used NixOS around 4 years ago and it was a great, but steep hill to climb. I am only a hobbyist so my knowledge, while not being close to none, is mostly disparate, scattered, and uncertain. I came accross NixOS after a very enriching distro hopping period, been through some install that are considered "hard", and failed in love with NixOS. Please, let me try to summarize my history with NixOS before asking my question. Sorry for the long post.

I just did not just perform a basic installation, I did it, then used ZFS, then LVM, even went with an Erasable Darlings Installation after reading Graham Christensen blog posts (I learned so much doing this), had once an install that would only go through booting with an encrypted usb plugged in, etc., etc. I learned some basis about grub, and the whole architecture of an OS. Very basis, but stil, I wasn't just a user, every use was a new learning.

I was there when Flakes were still unstable, and read the Eelco Dostra's blog posts about them ont he Tweag website. When Flakes arrived, I had already spent too much time on it, and as it was so new, my too low level of knowledge kept me from being able to follow the crowd that was at the time in an understandable wave of technical writing and details, which I could not follow.

For some reason, I had to switch to a Macbook, and tried to use Nix on it, but I was at saturation, on a time basis and "poorly" accumulated knowledge. I gave up there, and since, using a computer has never been the same. Like a Lion in a cage I got bored, and uninterested in my OS, at the point that I never opened the Terminal on the Macbook. I say poorly , as I would consider myself just a step above what I could call an OS Script Kiddy . Sometimes I go in depth some notion, and on some subject I just follow blogs and tutorial and make my way through trial and error. I'm just a digital postmodern hunter-gatherer.

I still have my Macbook, but someone recently gave me an old PC, and the passion suddenly came back, I went through my old spare parts box, upgraded drives and RAM, kicked Windows, and out of convenience installed Ubuntu. Immediatly NixOS came back to my mind, and here we are.

How has moved NixOS in 4 years? Is it growing and delivering its promises? Is security on par?

The community was great and helpful as we were discovering together, how are people helpful now? Is the forum still active and enthousiastic?

How is the documentation now? It wasn' as bad as some people were raging about, but it was dense and dry.

What is the state of immutability in the Linux world nowadays, how Guix evolved? Fedora Silverblue? Debian was painfully working on it, how did they go? Any newcomer?

I know I could just read some blog posts, check the docs and launch it on a VM, but I wanted to hear from you guys, as I followed, read and learned from yous so much 4 years ago that I can't wait to have your words on it.

Thanks again.

submitted by /u/oyoumademedoit

[link] [comments]

view this post on Zulip Zapier (Dec 21 2023 at 12:20):

What do you do about docker compose?

Date: 2023-12-20T23:24:03+00:00
Link: https://old.reddit.com/r/NixOS/comments/18n8cq7/what_do_you_do_about_docker_compose/

My use case: I use a docker-compose file to manage a group of containers. One of those images is Portainer, which makes it easy to inspect individual containers' memory, CPU, and logs.

​

The NixOS way would be to containerize each app in a VM. However, I'd lose the ability to introspect the stack. And I suspect running 14 VMs in NixOS would use more resources than docker-compose.

​

Do you still use a docker-compose.yml to manage a stack of related (and networked) containers?

submitted by /u/xristiano

[link] [comments]

view this post on Zulip Zapier (Dec 22 2023 at 02:15):

How does nix handle package dependencies?

Date: 2023-12-20T20:06:15+00:00
Link: https://old.reddit.com/r/NixOS/comments/18n3uk0/how_does_nix_handle_package_dependencies/

Apologize for the probably silly question, but I am trying to figure out how does the nix package manager work and I would like some help.

I am installing things via substitutes. It seems to me that whenever nix installs packages in the store, it downloads all the dependencies (if I am not mistaken, inputs in nix-language), not just the run-time dependencies but also the build-time dependencies. I would like to know if my understanding is correct and if that were the case, I would like to know why does it do so?

Thanks in advance for any answer.

submitted by /u/theIneffM

[link] [comments]

view this post on Zulip Zapier (Dec 22 2023 at 03:12):

NixOS vs Debian with Nix

Date: 2023-12-19T16:46:00+00:00
Link: https://old.reddit.com/r/NixOS/comments/18m6c7i/nixos_vs_debian_with_nix/

I'm currently using NixOS, but I sometimes run into obscure programs unavailable on Nix (without compiling them myself). I think I'm probably fine giving up a completely declarative installation for a mostly declarative one with a more complete ecosystem.

However, I would still like to manage services like my IME, proxies, etc. through Nix. Would this work as well on Debian as it does on NixOS?

submitted by /u/IJustWantComment

[link] [comments]

view this post on Zulip Zapier (Dec 22 2023 at 06:19):

Is unlock 1Password with gnome-keyring possible?

Date: 2023-12-21T18:36:18+00:00
Link: https://old.reddit.com/r/NixOS/comments/18ntuof/is_unlock_1password_with_gnomekeyring_possible/

I'm trying to have my 1Password on NixOS (unstable, if that matters ) behave in the same way it does on my Mac, where I have Touch ID set up to unlock it once it locks or goes idle, and I can't remember the last time I had to enter my password, through restarts and what-have-you.

On Linux, however, I have to always re-enter my master password after a restart. I have the polkit-gnome-authentication-agent setup, and it does work for unlocking via fingerprint, after I enter my master password the first time, but I am wondering if it is possible to default to fingerprint unlock, even after a restart, if I have gnome-keyring somehow authenticate me on logging in, and letting 1Password know, so it knows it's safe to just use biometrics to open.

Is this possible? I'm not really sure which pieces of my config are relevant for this facet, but here are some of the things I am doing:

...

user.services = { polkit-gnome-authentication-agent-1 = { description = "polkit-gnome-authentication-agent-1"; wantedBy = ["graphical-session.target"]; wants = ["graphical-session.target"]; after = ["graphical-session.target"]; serviceConfig = { Type = "simple"; ExecStart = "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1"; Restart = "on-failure"; RestartSec = 1; TimeoutStopSec = 1; }; }; };

...

security = { pam.services = { login.enableGnomeKeyring = true; }; };

...

services = { gnome.gnome-keyring.enable = true; };

I also have the libsecret package installed, though I'm not really too sure if and what that does in regards to this, nor am I overly versed in gnome-keyring in general, being new to that, and NixOS in general.

Is there something else I need to do? Am I not doing enough? Any guidance is much appreciated...!

submitted by /u/lushmoney

[link] [comments]

view this post on Zulip Zapier (Dec 22 2023 at 21:17):

Should LSP servers be in the project flake environment or as an extra dependency for Neovim?

Date: 2023-12-22T08:51:01+00:00
Link: https://old.reddit.com/r/NixOS/comments/18oai2a/should_lsp_servers_be_in_the_project_flake/

When developing projects, should the LSP server e.g. pyright, be added to the packages in a devShell or should it be in the extraPackages for Neovim?

submitted by /u/CatRyBou

[link] [comments]

view this post on Zulip Zapier (Dec 23 2023 at 13:22):

Building Docker images with Nix

Date: 2023-12-22T19:37:14+00:00
Link: https://old.reddit.com/r/NixOS/comments/18on1le/building_docker_images_with_nix/

I'm doing my first steps onto building Docker images using Nix. I could already successfully build a Python Docker image that runs a FastAPI server. I would like that this service interects to a PostgreSQL Docker service, but I can't find a way to build this image properly. There is always a problem. Postgres complains it can't be ran using the root user, so I setup a user through throughAsRoot option from builDockerImage . After that it complains the folder /var/lib/pgsql/data doesn't exist, so I setup the folder myself. And so on... I'm trying to follow what the official Postgres Docker Image from DockerHub does, doing it so, it seems like I'm not relying on unchangeable package versions and that won't be reproducible...

Does anybody has done something similar already? Is there a template for that? Any help is welcome, since the documentation is still pretty basic.

submitted by /u/rodolfoksveiga

[link] [comments]

view this post on Zulip Zapier (Dec 24 2023 at 10:14):

Identify heavy apps vs light apps in nixos-rebuild process?

Date: 2023-12-18T18:45:55+00:00
Link: https://old.reddit.com/r/NixOS/comments/18lg52e/identify_heavy_apps_vs_light_apps_in_nixosrebuild/

Is there anyway to find out download and build speeds for different packages on average?

Obviously it will depend on bandwidth and processing power respectively, but i am looking for a relative view. For example:

it will take ~50x longer to download 'vs-studio' vs 'neofetch' it will take ~10x longer to build 'vs-studio' vs 'neofetch'. is there any aggregator or site that visualises this type of information?

submitted by /u/mars0008

[link] [comments]

view this post on Zulip Zapier (Dec 24 2023 at 10:14):

clonehero is segfaulting on NixOS 23.11

Date: 2023-12-17T14:50:13+00:00
Link: https://old.reddit.com/r/NixOS/comments/18kiwut/clonehero_is_segfaulting_on_nixos_2311/

I am trying to play Clone Hero (package clonehero) on NixOS, but trying to launch it gives segfault.

Anyone else is able to play it?

submitted by /u/AkaIgor

[link] [comments]

view this post on Zulip Zapier (Dec 24 2023 at 10:14):

suspend then hibernate configuration

Date: 2023-12-17T14:57:02+00:00
Link: https://old.reddit.com/r/NixOS/comments/18kj1ya/suspend_then_hibernate_configuration/

Could someone share their configuration that enables suspend then hibernate after a set period of time of laptop.

Tried the following but did not work for me:

boot.kernelParams = [ "mem_sleep_default=deep" ]; systemd.sleep.extraConfig = '' HibernateDelaySec=30m SuspendState=mem ''; ​

submitted by /u/Leader-Environmental

[link] [comments]

view this post on Zulip Zapier (Dec 24 2023 at 16:21):

What do y'all think, about my Christmas Tree ?

Date: 2023-12-24T13:37:20+00:00
Link: https://old.reddit.com/r/NixOS/comments/18pvdv8/what_do_yall_think_about_my_christmas_tree/

submitted by /u/SzymBoss

[link] [comments]

view this post on Zulip Zapier (Dec 26 2023 at 10:13):

NixOS for a flashable custom linux environment

Date: 2023-12-23T16:35:17+00:00
Link: https://old.reddit.com/r/NixOS/comments/18p9e1r/nixos_for_a_flashable_custom_linux_environment/

Hey NixOS people,

I would like to start using NixOS to build customized linux images that can be flashed on a batch of systems for events. Are there any good guides out there for this? I don't seem to find any that discuss how this can be accomplished (e.g. how a git repo can be structured, how to test this, ...)

Some background: We currently have a way of doing this by having a bunch of ansible playbooks that modify an Ubuntu image in qemu. That image is then flashed to the systems and it all works. This is obviously not ideal so I would love to replace this with a NixOS system. I would make a git repo where the config lives and then build an iso that can be flashed to systems.

I hope someone help me get started :)

submitted by /u/maartenweyns

[link] [comments]

view this post on Zulip Zapier (Dec 26 2023 at 11:12):

How is state handled in nix?

Date: 2023-12-25T21:45:40+00:00
Link: https://old.reddit.com/r/NixOS/comments/18qrvm4/how_is_state_handled_in_nix/

Hi nix gurus. I am the original author of Satty [0], a screenshot annotation tool targeted at Wayland compositors. Think of it as some basic drawing tools (lines, arrows, text..) with some basic settings (colour, size). It's deliberately simple.

The community is discussing an option, where the last state of program would be remembered for when it runs next [1]. My first idea was to make Satty edit it's own configuration file to reflect the "last state", but then got second thoughts: what happens to nix users where the system is meant to be immutable?

So that's the question to you: how can we handle this in a correct way? Is it okay to edit the config file? should we save it elsewhere? is it at all possible in NixOS?

[0] https://github.com/gabm/satty [1] https://github.com/gabm/Satty/issues/34

submitted by /u/gabm-sn

[link] [comments]

view this post on Zulip Zapier (Dec 26 2023 at 17:13):

NixOS on Arm - easy peasy or a time sink?

Date: 2023-12-26T04:18:43+00:00
Link: https://old.reddit.com/r/NixOS/comments/18qzhv7/nixos_on_arm_easy_peasy_or_a_time_sink/

I have been running NixOS for about 18 months now, feel quite familiar with the basics and like it a lot. I have it running on some different Intel PCs at home. Sometimes I have thought that smaller Arm single board computers would be good hardware for things I want to use if for. But it seems such a time sink to get it running. Experimental, not well documented etc. I don't want to fiddle a lot, I want the advantages of the hardware platform but not for the price of messing about for hours and hours.

How is the experience, is there an Arm SBC that works especially well with NixOS so that I can get existing configurations to work with small-ish effort? (EspecialIy I have been eyeing the Orange PI line)

submitted by /u/Kasta4711bort

[link] [comments]

view this post on Zulip IFTTT (Dec 28 2023 at 19:13):

https://old.reddit.com/r/NixOS/comments/18oai2a/should_lsp_servers_be_in_the_project_flake/

view this post on Zulip IFTTT (Dec 28 2023 at 22:13):

Watching DVDs on NixOS

URL: https://old.reddit.com/r/NixOS/comments/18suruv/watching_dvds_on_nixos/

<!-- SC_OFF --><div class="md"><p>Anyone here happen to know the magic to getting NixOS to not error out on copy protected dvd's? I installed libdvdcss, but still get this in my logs when I insert a disk:</p> <pre><code>Dec 27 20:54:18 nixnuc kernel: sr 1:0:0:0: [sr0] tag#0 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_OK cmd_age=0s Dec 27 20:54:18 nixnuc kernel: sr 1:0:0:0: [sr0] tag#0 Sense Key : Illegal Request [current] Dec 27 20:54:18 nixnuc kernel: sr 1:0:0:0: [sr0] tag#0 Add. Sense: Read of scrambled sector without authentication Dec 27 20:54:18 nixnuc kernel: sr 1:0:0:0: [sr0] tag#0 CDB: Read(10) 28 00 00 37 2b 80 00 00 3c 00 00 00 Dec 27 20:54:18 nixnuc kernel: I/O error, dev sr0, sector 14462464 op 0x0:(READ) flags 0x84700 phys_seg 3 prio class 2 Dec 27 20:54:18 nixnuc kernel: sr 1:0:0:0: [sr0] tag#0 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_OK cmd_age=0s Dec 27 20:54:18 nixnuc kernel: sr 1:0:0:0: [sr0] tag#0 Sense Key : Illegal Request [current] Dec 27 20:54:18 nixnuc kernel: sr 1:0:0:0: [sr0] tag#0 Add. Sense: Read of scrambled sector without authentication Dec 27 20:54:18 nixnuc kernel: sr 1:0:0:0: [sr0] tag#0 CDB: Read(10) 28 00 00 37 2b bc 00 00 04 00 00 00 Dec 27 20:54:18 nixnuc kernel: I/O error, dev sr0, sector 14462704 op 0x0:(READ) flags 0x80700 phys_seg 1 prio class 2 Dec 27 20:54:18 nixnuc kernel: sr 1:0:0:0: [sr0] tag#0 FAILED Result: hostbyte=DID_OK driverbyte=DRIVER_OK cmd_age=0s Dec 27 20:54:18 nixnuc kernel: sr 1:0:0:0: [sr0] tag#0 Sense Key : Illegal Request [current] Dec 27 20:54:18 nixnuc kernel: sr 1:0:0:0: [sr0] tag#0 Add. Sense: Read of scrambled sector without authentication Dec 27 20:54:18 nixnuc kernel: sr 1:0:0:0: [sr0] tag#0 CDB: Read(10) 28 00 00 37 2b 80 00 00 02 00 00 00 Dec 27 20:54:18 nixnuc kernel: I/O error, dev sr0, sector 14462464 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 2 Dec 27 20:54:18 nixnuc kernel: Buffer I/O error on dev sr0, logical block 1807808, async page read </code></pre> <p>I want to be able to watch these w/o having to switch to another distro, but seem to be missing something that (I assume) is trivial.</p> </div><!-- SC_ON --> submitted by <a href="https://old.reddit.com/user/tuxbell"> /u/tuxbell </a> <br/> <span><a href="https://old.reddit.com/r/NixOS/comments/18suruv/watching_dvds_on_nixos/">[link]</a></span> <span><a href="https://old.reddit.com/r/NixOS/comments/18suruv/watching_dvds_on_nixos/">[comments]</a></span>

view this post on Zulip IFTTT (Dec 29 2023 at 03:13):

Do you use NixOS for work?

December 28, 2023 at 01:27PM

https://old.reddit.com/r/NixOS/comments/18t52hb/do_you_use_nixos_for_work/

view this post on Zulip IFTTT (Dec 30 2023 at 11:13):

Virtualization

December 29, 2023 at 01:23AM

https://old.reddit.com/r/NixOS/comments/18tj618/virtualization/

view this post on Zulip IFTTT (Dec 30 2023 at 13:13):

Migrating system config to flakes?

December 29, 2023 at 04:49PM

https://old.reddit.com/r/NixOS/comments/18u2ifm/migrating_system_config_to_flakes/

view this post on Zulip IFTTT (Dec 31 2023 at 20:13):

NixOS with flakes and home-manager: how to rebuild-switch only home environment?

December 31, 2023 at 04:39AM

https://old.reddit.com/r/NixOS/comments/18v6yov/nixos_with_flakes_and_homemanager_how_to/

view this post on Zulip IFTTT (Jan 02 2024 at 00:13):

Can Game Flakes be a thing?

January 01, 2024 at 09:31AM

https://old.reddit.com/r/NixOS/comments/18w1ncb/can_game_flakes_be_a_thing/

view this post on Zulip IFTTT (Jan 02 2024 at 01:13):

NixOS as production server.

December 28, 2023 at 11:12AM

https://old.reddit.com/r/NixOS/comments/18t1vu6/nixos_as_production_server/

view this post on Zulip IFTTT (Jan 02 2024 at 06:09):

I finally figured out NixOS!

January 01, 2024 at 07:55PM

https://old.reddit.com/r/NixOS/comments/18wfvan/i_finally_figured_out_nixos/

view this post on Zulip IFTTT (Jan 02 2024 at 21:13):

I've not yet figured out NixOS

January 02, 2024 at 09:16AM

https://old.reddit.com/r/NixOS/comments/18wuk9t/ive_not_yet_figured_out_nixos/

view this post on Zulip IFTTT (Jan 03 2024 at 12:13):

Some notes on NixOS

January 02, 2024 at 12:32PM

https://old.reddit.com/r/NixOS/comments/18wzi7f/some_notes_on_nixos/

view this post on Zulip IFTTT (Jan 04 2024 at 04:13):

Use both local paths and public repo urls in flakes

December 31, 2023 at 08:35PM

https://old.reddit.com/r/NixOS/comments/18vp1uz/use_both_local_paths_and_public_repo_urls_in/

view this post on Zulip IFTTT (Jan 04 2024 at 15:13):

Nix package manager in a nutshell

January 04, 2024 at 05:16AM

https://old.reddit.com/r/NixOS/comments/18ycxwa/nix_package_manager_in_a_nutshell/

view this post on Zulip IFTTT (Jan 04 2024 at 22:09):

Which packages are installed with minimal installation?

December 30, 2023 at 11:08AM

https://old.reddit.com/r/NixOS/comments/18un11e/which_packages_are_installed_with_minimal/

view this post on Zulip IFTTT (Jan 05 2024 at 10:13):

A declarative way for adding environment variables to specific desktop apps?

January 04, 2024 at 11:57PM

https://old.reddit.com/r/NixOS/comments/18z1k49/a_declarative_way_for_adding_environment/

view this post on Zulip IFTTT (Jan 06 2024 at 01:13):

Why use home manager for configuration instead of copied dotfiles?

January 05, 2024 at 11:28AM

https://old.reddit.com/r/NixOS/comments/18zf7zd/why_use_home_manager_for_configuration_instead_of/

view this post on Zulip IFTTT (Jan 06 2024 at 12:13):

Agenix & Multi-System Nix Config: Tips for Locating Auth Tokens?

January 04, 2024 at 03:18PM

https://old.reddit.com/r/NixOS/comments/18yr7w5/agenix_multisystem_nix_config_tips_for_locating/

view this post on Zulip IFTTT (Jan 06 2024 at 14:13):

Equivalent to 'apt purge' to remove all configuration files of a package

January 05, 2024 at 06:48AM

https://old.reddit.com/r/NixOS/comments/18z8l4q/equivalent_to_apt_purge_to_remove_all/

view this post on Zulip IFTTT (Jan 06 2024 at 18:13):

fr though :rotfl:

January 06, 2024 at 08:39AM

https://old.reddit.com/r/NixOS/comments/1903xfk/fr_though_rotfl/

view this post on Zulip IFTTT (Jan 07 2024 at 15:13):

How do I configure dotfiles in a declarative manner?

January 06, 2024 at 06:23AM

https://old.reddit.com/r/NixOS/comments/19011jh/how_do_i_configure_dotfiles_in_a_declarative/

view this post on Zulip IFTTT (Jan 07 2024 at 21:13):

I've been told that Nix isn't FHS compliant. What will this affect compared to a more traditional distro like Arch?

January 07, 2024 at 07:48AM

https://old.reddit.com/r/NixOS/comments/190v0n7/ive_been_told_that_nix_isnt_fhs_compliant_what/

view this post on Zulip IFTTT (Jan 08 2024 at 08:13):

PSA: Syntax highlighting for multi-line string blocks works with treesitter+neovim

January 07, 2024 at 10:49PM

https://old.reddit.com/r/NixOS/comments/191ey9j/psa_syntax_highlighting_for_multiline_string/

view this post on Zulip IFTTT (Jan 09 2024 at 02:13):

Suggestions for improving the configuration

January 08, 2024 at 07:02AM

https://old.reddit.com/r/NixOS/comments/191n5xe/suggestions_for_improving_the_configuration/

view this post on Zulip IFTTT (Jan 09 2024 at 05:13):

Are flakes useful outside of version pinning?

January 08, 2024 at 04:05PM

https://old.reddit.com/r/NixOS/comments/1920foj/are_flakes_useful_outside_of_version_pinning/

view this post on Zulip IFTTT (Jan 09 2024 at 21:09):

Hello people.

January 09, 2024 at 05:45AM

https://old.reddit.com/r/NixOS/comments/192f1yh/hello_people/

view this post on Zulip IFTTT (Jan 09 2024 at 22:13):

Can I have multiple configs for a single computer and switch between them?

January 09, 2024 at 12:10PM

https://old.reddit.com/r/NixOS/comments/192o8cr/can_i_have_multiple_configs_for_a_single_computer/

view this post on Zulip IFTTT (Jan 10 2024 at 20:14):

Next step toward automating my infrastructure with NixOS

January 10, 2024 at 06:41AM

https://old.reddit.com/r/NixOS/comments/1939srt/next_step_toward_automating_my_infrastructure/

view this post on Zulip IFTTT (Jan 11 2024 at 12:13):

Using configs on multiple hardwares - $variables?

January 10, 2024 at 11:21AM

https://old.reddit.com/r/NixOS/comments/193gk90/using_configs_on_multiple_hardwares_variables/

view this post on Zulip IFTTT (Jan 11 2024 at 20:13):

Static JSON API written in Nix (check comments)

January 11, 2024 at 10:09AM

https://old.reddit.com/r/NixOS/comments/19487sk/static_json_api_written_in_nix_check_comments/

view this post on Zulip IFTTT (Jan 12 2024 at 21:13):

Cachix 1.7

January 12, 2024 at 05:29AM

https://old.reddit.com/r/NixOS/comments/194v2w7/cachix_17/

view this post on Zulip IFTTT (Jan 13 2024 at 14:13):

Looking for a Linux & Unix Discord Community?

January 13, 2024 at 04:15AM

https://old.reddit.com/r/NixOS/comments/195mqac/looking_for_a_linux_unix_discord_community/

view this post on Zulip IFTTT (Jan 13 2024 at 21:13):

How to keep "source" when doing garbage collection

January 12, 2024 at 03:27PM

https://old.reddit.com/r/NixOS/comments/19595vc/how_to_keep_source_when_doing_garbage_collection/

view this post on Zulip IFTTT (Jan 15 2024 at 07:13):

Steam games take a long time to launch

January 12, 2024 at 01:06AM

https://old.reddit.com/r/NixOS/comments/194qro7/steam_games_take_a_long_time_to_launch/

view this post on Zulip IFTTT (Jan 15 2024 at 10:13):

x86_64 VM on aarch64 host?

January 14, 2024 at 05:11PM

https://old.reddit.com/r/NixOS/comments/196vyql/x86_64_vm_on_aarch64_host/

view this post on Zulip IFTTT (Jan 15 2024 at 18:14):

why use nixpkgs.stdenv.mkDerivation over builtins.derivation?

January 10, 2024 at 03:36PM

https://old.reddit.com/r/NixOS/comments/193mt89/why_use_nixpkgsstdenvmkderivation_over/

view this post on Zulip IFTTT (Jan 16 2024 at 01:13):

Services, programs, and packages. Oh my!

January 09, 2024 at 08:48AM

https://old.reddit.com/r/NixOS/comments/192j60w/services_programs_and_packages_oh_my/

view this post on Zulip IFTTT (Jan 16 2024 at 06:14):

The entirety of my time on YouTube last week

January 15, 2024 at 08:56PM

https://old.reddit.com/r/NixOS/comments/197uhjz/the_entirety_of_my_time_on_youtube_last_week/

view this post on Zulip IFTTT (Jan 16 2024 at 21:13):

How to set system architecture in flakes?

January 13, 2024 at 07:50AM

https://old.reddit.com/r/NixOS/comments/195qx0g/how_to_set_system_architecture_in_flakes/

view this post on Zulip IFTTT (Jan 17 2024 at 05:13):

How We Sped Up Nix Package Installs in Devbox

January 16, 2024 at 11:55AM

https://old.reddit.com/r/NixOS/comments/198c65z/how_we_sped_up_nix_package_installs_in_devbox/

view this post on Zulip IFTTT (Jan 17 2024 at 09:13):

Deploying a Cloudflare R2-Backed Nix Binary Cache (Attic!) on Fly.io

January 16, 2024 at 06:56PM

https://old.reddit.com/r/NixOS/comments/198m2fy/deploying_a_cloudflare_r2backed_nix_binary_cache/

view this post on Zulip IFTTT (Jan 17 2024 at 19:09):

Is it normal to free frustrated or mad while tinkering my computer

January 17, 2024 at 05:21AM

https://old.reddit.com/r/NixOS/comments/198wf2e/is_it_normal_to_free_frustrated_or_mad_while/

view this post on Zulip IFTTT (Jan 18 2024 at 15:14):

So, how do I REALLY search for packages?

January 18, 2024 at 03:47AM

https://old.reddit.com/r/NixOS/comments/199ocj8/so_how_do_i_really_search_for_packages/

view this post on Zulip IFTTT (Jan 18 2024 at 21:13):

(OT/Vent): My Team made me use ansible for a CI Job

January 18, 2024 at 07:13AM

https://old.reddit.com/r/NixOS/comments/199scph/otvent_my_team_made_me_use_ansible_for_a_ci_job/

view this post on Zulip IFTTT (Jan 19 2024 at 00:13):

Encrypted Btrfs Install

January 18, 2024 at 12:34PM

https://old.reddit.com/r/NixOS/comments/19a02a7/encrypted_btrfs_install/

view this post on Zulip IFTTT (Jan 19 2024 at 22:18):

Espanso Wayland? Anyone doing this?

January 15, 2024 at 01:29AM

https://old.reddit.com/r/NixOS/comments/1974sfo/espanso_wayland_anyone_doing_this/

view this post on Zulip IFTTT (Jan 19 2024 at 22:18):

Ready made Configs?

January 18, 2024 at 05:41PM

https://old.reddit.com/r/NixOS/comments/19a774d/ready_made_configs/

view this post on Zulip IFTTT (Jan 20 2024 at 07:13):

NixCon North American Schedule is Live! Come join us in Southern California

January 19, 2024 at 07:47PM

https://old.reddit.com/r/NixOS/comments/19b2kg3/nixcon_north_american_schedule_is_live_come_join/

view this post on Zulip IFTTT (Jan 20 2024 at 11:13):

What Language Server is currently the best for Nix:

January 19, 2024 at 05:44PM

https://old.reddit.com/r/NixOS/comments/19b0584/what_language_server_is_currently_the_best_for_nix/

view this post on Zulip IFTTT (Jan 21 2024 at 06:09):

Building and Privately Caching x86 and aarch64 NixOS Systems with Github Actions

January 20, 2024 at 10:14AM

https://old.reddit.com/r/NixOS/comments/19bhy6c/building_and_privately_caching_x86_and_aarch64/

view this post on Zulip IFTTT (Jan 21 2024 at 07:13):

Thoughts on flakehub.com?

January 20, 2024 at 02:22PM

https://old.reddit.com/r/NixOS/comments/19bnmu9/thoughts_on_flakehubcom/

view this post on Zulip IFTTT (Jan 21 2024 at 13:11):

Obsidian not using GPU

January 20, 2024 at 06:29PM

https://old.reddit.com/r/NixOS/comments/19bsui8/obsidian_not_using_gpu/

view this post on Zulip IFTTT (Jan 21 2024 at 15:13):

How NixOS Won Me Over and Made Me Shift Completely to Linux

January 21, 2024 at 06:04AM

https://old.reddit.com/r/NixOS/comments/19c43p9/how_nixos_won_me_over_and_made_me_shift/

view this post on Zulip IFTTT (Jan 22 2024 at 20:13):

Do we need a home-merger?

January 21, 2024 at 09:54PM

https://old.reddit.com/r/NixOS/comments/19coqyl/do_we_need_a_homemerger/

view this post on Zulip IFTTT (Jan 23 2024 at 05:13):

Any guides to doing music on NixOS ? (or linux in general)

January 22, 2024 at 10:04AM

https://old.reddit.com/r/NixOS/comments/19d1xwk/any_guides_to_doing_music_on_nixos_or_linux_in/

view this post on Zulip IFTTT (Jan 24 2024 at 03:13):

Official NixOS wiki

January 23, 2024 at 03:38PM

https://old.reddit.com/r/NixOS/comments/19e2mtc/official_nixos_wiki/

view this post on Zulip IFTTT (Jan 24 2024 at 05:13):

Should I switch to NIXOS?

January 23, 2024 at 03:00PM

https://old.reddit.com/r/NixOS/comments/19e1r5j/should_i_switch_to_nixos/

view this post on Zulip IFTTT (Jan 24 2024 at 06:09):

NixOS Errors

January 23, 2024 at 03:41AM

https://old.reddit.com/r/NixOS/comments/19dmje6/nixos_errors/

view this post on Zulip IFTTT (Jan 25 2024 at 00:14):

Some wallpapers created using stable diffusion and the NixOS logo.

January 24, 2024 at 12:11PM

https://old.reddit.com/r/NixOS/comments/19epys3/some_wallpapers_created_using_stable_diffusion/

view this post on Zulip IFTTT (Jan 25 2024 at 14:13):

Fedora Silverblue conversion

January 24, 2024 at 03:21PM

https://old.reddit.com/r/NixOS/comments/19euktr/fedora_silverblue_conversion/

view this post on Zulip IFTTT (Jan 25 2024 at 17:13):

The History of Nix at Bellroy

January 23, 2024 at 11:20PM

https://old.reddit.com/r/NixOS/comments/19ebggz/the_history_of_nix_at_bellroy/

view this post on Zulip IFTTT (Jan 27 2024 at 03:13):

Federated self hosted blog using NixOs

January 26, 2024 at 02:04AM

https://old.reddit.com/r/NixOS/comments/1abezn1/federated_self_hosted_blog_using_nixos/

view this post on Zulip IFTTT (Jan 27 2024 at 19:18):

Overview of Nix Formatters Ecosystem

January 27, 2024 at 08:28AM

https://old.reddit.com/r/NixOS/comments/1acemjr/overview_of_nix_formatters_ecosystem/

view this post on Zulip IFTTT (Jan 28 2024 at 23:13):

NixOS Is A Great Distro For Beginners

January 28, 2024 at 12:57PM

https://old.reddit.com/r/NixOS/comments/1adcvmj/nixos_is_a_great_distro_for_beginners/

view this post on Zulip IFTTT (Jan 29 2024 at 19:13):

Switching to Hyperland

January 27, 2024 at 10:42AM

https://old.reddit.com/r/NixOS/comments/1achq7o/switching_to_hyperland/

view this post on Zulip IFTTT (Jan 29 2024 at 23:13):

Latest nixpkgs breaks amdgpu. Beware.

January 29, 2024 at 12:55PM

https://old.reddit.com/r/NixOS/comments/1ae5y4l/latest_nixpkgs_breaks_amdgpu_beware/

view this post on Zulip IFTTT (Jan 30 2024 at 18:18):

How do you manage your develompent environment?

January 29, 2024 at 06:20PM

https://old.reddit.com/r/NixOS/comments/1aedb97/how_do_you_manage_your_develompent_environment/

view this post on Zulip IFTTT (Jan 31 2024 at 00:13):

Install NixOS on Raspberry Pi 5

January 25, 2024 at 08:48PM

https://old.reddit.com/r/NixOS/comments/1aba77l/install_nixos_on_raspberry_pi_5/

view this post on Zulip IFTTT (Jan 31 2024 at 08:09):

Flutter on nixos

January 25, 2024 at 06:16PM

https://old.reddit.com/r/NixOS/comments/1ab77ht/flutter_on_nixos/

view this post on Zulip IFTTT (Jan 31 2024 at 13:14):

Factorio

January 30, 2024 at 05:11PM

https://old.reddit.com/r/NixOS/comments/1af55b7/factorio/

view this post on Zulip IFTTT (Feb 01 2024 at 00:13):

Idiot proofing NixOS on systems that don't have easy access to the bootloader (remote or headless systems)

January 31, 2024 at 12:23PM

https://old.reddit.com/r/NixOS/comments/1afrmnv/idiot_proofing_nixos_on_systems_that_dont_have/

view this post on Zulip IFTTT (Feb 01 2024 at 19:13):

NixOS Revolution?

February 01, 2024 at 07:13AM

https://old.reddit.com/r/NixOS/comments/1agd8zp/nixos_revolution/

view this post on Zulip IFTTT (Feb 01 2024 at 23:13):

NixOS for work

January 31, 2024 at 03:43PM

https://old.reddit.com/r/NixOS/comments/1afwinx/nixos_for_work/

view this post on Zulip IFTTT (Feb 02 2024 at 11:18):

Setting Up Python Projects

January 31, 2024 at 02:32AM

https://old.reddit.com/r/NixOS/comments/1afex3e/setting_up_python_projects/

view this post on Zulip IFTTT (Feb 02 2024 at 15:13):

I'm considering switching to NixOS from Arch

February 02, 2024 at 01:36AM

https://old.reddit.com/r/NixOS/comments/1agzxce/im_considering_switching_to_nixos_from_arch/

view this post on Zulip IFTTT (Feb 02 2024 at 19:13):

Arch Linux to nixos

February 01, 2024 at 08:12PM

https://old.reddit.com/r/NixOS/comments/1aguwji/arch_linux_to_nixos/

view this post on Zulip IFTTT (Feb 03 2024 at 11:13):

Who's streaming nixos conference

February 02, 2024 at 01:57PM

https://old.reddit.com/r/NixOS/comments/1ahfgs6/whos_streaming_nixos_conference/

view this post on Zulip IFTTT (Feb 04 2024 at 09:18):

Cant update NVIDIA driver on stable branch

February 03, 2024 at 08:37AM

https://old.reddit.com/r/NixOS/comments/1ai04sz/cant_update_nvidia_driver_on_stable_branch/

view this post on Zulip IFTTT (Feb 05 2024 at 04:13):

NixVirt: LibVirt domain management for Nix

February 04, 2024 at 03:58PM

https://old.reddit.com/r/NixOS/comments/1aj2jv4/nixvirt_libvirt_domain_management_for_nix/

view this post on Zulip IFTTT (Feb 05 2024 at 21:09):

nix-collect-garbage -d not removing everything

February 04, 2024 at 11:55PM

https://old.reddit.com/r/NixOS/comments/1ajbatg/nixcollectgarbage_d_not_removing_everything/

view this post on Zulip IFTTT (Feb 07 2024 at 00:14):

As a linux noob, NixOS has saved me from distro hopping hell

February 06, 2024 at 01:31PM

https://old.reddit.com/r/NixOS/comments/1akl9zf/as_a_linux_noob_nixos_has_saved_me_from_distro/

view this post on Zulip IFTTT (Feb 07 2024 at 09:13):

I'm considering moving away from NixOS, should I?

February 06, 2024 at 02:16PM

https://old.reddit.com/r/NixOS/comments/1akmety/im_considering_moving_away_from_nixos_should_i/

view this post on Zulip IFTTT (Feb 08 2024 at 00:09):

What's the difference between nix develop and nix shell?

February 06, 2024 at 04:07PM

https://old.reddit.com/r/NixOS/comments/1akp1yl/whats_the_difference_between_nix_develop_and_nix/

view this post on Zulip IFTTT (Feb 08 2024 at 15:13):

NixOS phone?

February 07, 2024 at 10:30PM

https://old.reddit.com/r/NixOS/comments/1alpcvq/nixos_phone/

view this post on Zulip IFTTT (Feb 09 2024 at 04:13):

How are you 'supposed' to install Python packages?

February 08, 2024 at 02:54PM

https://old.reddit.com/r/NixOS/comments/1am8spl/how_are_you_supposed_to_install_python_packages/

view this post on Zulip IFTTT (Feb 09 2024 at 10:14):

zephyr-nix: Develop Zephyr projects using Nix

February 05, 2024 at 08:03PM

https://old.reddit.com/r/NixOS/comments/1ak0ttc/zephyrnix_develop_zephyr_projects_using_nix/

view this post on Zulip IFTTT (Feb 09 2024 at 22:14):

nixos-container vs docker and friends

February 05, 2024 at 04:42AM

https://old.reddit.com/r/NixOS/comments/1ajfl8c/nixoscontainer_vs_docker_and_friends/

view this post on Zulip IFTTT (Feb 10 2024 at 00:13):

How to set home-manager option for all users at once?

February 09, 2024 at 08:25AM

https://old.reddit.com/r/NixOS/comments/1ams0g3/how_to_set_homemanager_option_for_all_users_at/

view this post on Zulip IFTTT (Feb 10 2024 at 18:18):

Interview with CTO of ListenField AgTech: Introducing NixOS to Organization

February 10, 2024 at 06:19AM

https://old.reddit.com/r/NixOS/comments/1anhcl5/interview_with_cto_of_listenfield_agtech/

view this post on Zulip IFTTT (Feb 11 2024 at 21:14):

generations are still there after garbage collection

February 11, 2024 at 07:07AM

https://old.reddit.com/r/NixOS/comments/1aoa0wf/generations_are_still_there_after_garbage/

view this post on Zulip IFTTT (Feb 12 2024 at 13:19):

If home-manager program.bash.enable=true how are non-nix programs supposed to modify .bashrc or similar?

February 11, 2024 at 06:37PM

https://old.reddit.com/r/NixOS/comments/1aophc6/if_homemanager_programbashenabletrue_how_are/

view this post on Zulip IFTTT (Feb 12 2024 at 14:18):

Keychron K1 Pro / Bluetooth / NixOS w/KDE install

February 11, 2024 at 10:19PM

https://old.reddit.com/r/NixOS/comments/1aoteqb/keychron_k1_pro_bluetooth_nixos_wkde_install/

view this post on Zulip IFTTT (Feb 13 2024 at 08:13):

Thoughts and advice

February 12, 2024 at 06:09AM

https://old.reddit.com/r/NixOS/comments/1ap0ujc/thoughts_and_advice/

view this post on Zulip IFTTT (Feb 13 2024 at 14:13):

me trying to run a random binary

February 13, 2024 at 05:00AM

https://old.reddit.com/r/NixOS/comments/1apsw9w/me_trying_to_run_a_random_binary/

view this post on Zulip IFTTT (Feb 13 2024 at 18:13):

Is this newb-friendly Nix/NixOS intro blog post any good?

February 12, 2024 at 09:52AM

https://old.reddit.com/r/NixOS/comments/1ap6321/is_this_newbfriendly_nixnixos_intro_blog_post_any/

view this post on Zulip IFTTT (Feb 14 2024 at 01:13):

Hive

February 13, 2024 at 03:32AM

https://old.reddit.com/r/NixOS/comments/1aprbw1/hive/

view this post on Zulip IFTTT (Feb 14 2024 at 06:13):

Systemd Hardening: Some preconfigured options :D

February 13, 2024 at 07:01PM

https://old.reddit.com/r/NixOS/comments/1aqck9l/systemd_hardening_some_preconfigured_options_d/

view this post on Zulip IFTTT (Feb 14 2024 at 15:13):

Bootloader/Kernel hardening for NixOS

February 13, 2024 at 09:58PM

https://old.reddit.com/r/NixOS/comments/1aqfuxq/bootloaderkernel_hardening_for_nixos/

view this post on Zulip IFTTT (Feb 15 2024 at 07:13):

Making the plunge to NixOS

February 14, 2024 at 08:46AM

https://old.reddit.com/r/NixOS/comments/1aqrfmd/making_the_plunge_to_nixos/

view this post on Zulip IFTTT (Feb 16 2024 at 04:13):

Rust Development on NixOS, Part 1: Bootstrapping Rust Nightly via Flake

February 15, 2024 at 09:46AM

https://old.reddit.com/r/NixOS/comments/1arlc04/rust_development_on_nixos_part_1_bootstrapping/

view this post on Zulip IFTTT (Feb 17 2024 at 23:13):

Recreating Valve's "Steam Machine" using NixOS - Build a gaming PC for the Living Room?

February 17, 2024 at 08:14AM

https://old.reddit.com/r/NixOS/comments/1at5i9a/recreating_valves_steam_machine_using_nixos_build/

view this post on Zulip IFTTT (Feb 18 2024 at 16:13):

Last resort alternative to Nix Packages

February 16, 2024 at 10:04AM

https://old.reddit.com/r/NixOS/comments/1asf7a7/last_resort_alternative_to_nix_packages/

view this post on Zulip IFTTT (Feb 19 2024 at 02:13):

Why Use Hyprland and/or Home Manager?

February 18, 2024 at 12:19PM

https://old.reddit.com/r/NixOS/comments/1au3ox5/why_use_hyprland_andor_home_manager/

view this post on Zulip IFTTT (Feb 19 2024 at 11:13):

2 machines running same NixOS but different architectures config.

February 18, 2024 at 08:02PM

https://old.reddit.com/r/NixOS/comments/1aue12i/2_machines_running_same_nixos_but_different/

view this post on Zulip IFTTT (Feb 19 2024 at 16:13):

Cachix: downtime due to signup spam

February 19, 2024 at 03:42AM

https://old.reddit.com/r/NixOS/comments/1auld93/cachix_downtime_due_to_signup_spam/

view this post on Zulip IFTTT (Feb 20 2024 at 13:13):

Nix Development Environment question

February 16, 2024 at 10:00PM

https://old.reddit.com/r/NixOS/comments/1asuvwg/nix_development_environment_question/

view this post on Zulip IFTTT (Feb 20 2024 at 15:13):

Nerding out about Nix and NixOS with Jon Seager, Canonical

February 20, 2024 at 02:21AM

https://old.reddit.com/r/NixOS/comments/1avefl9/nerding_out_about_nix_and_nixos_with_jon_seager/

view this post on Zulip IFTTT (Feb 21 2024 at 03:13):

Easy neovim with configuration and runnable with nix run

February 19, 2024 at 03:39AM

https://old.reddit.com/r/NixOS/comments/1aulb75/easy_neovim_with_configuration_and_runnable_with/

view this post on Zulip IFTTT (Feb 21 2024 at 08:13):

Is Nix a Front-Loaded or Constant-Load Time Investment?

February 20, 2024 at 08:06PM

https://old.reddit.com/r/NixOS/comments/1aw2kp3/is_nix_a_frontloaded_or_constantload_time/

view this post on Zulip IFTTT (Feb 22 2024 at 17:10):

HTTP/HTTPS proxy that serves previously captured requests inside sandboxed Nix builds

February 22, 2024 at 06:09AM

https://old.reddit.com/r/NixOS/comments/1ax79jw/httphttps_proxy_that_serves_previously_captured/

view this post on Zulip IFTTT (Feb 23 2024 at 08:13):

aarch64 and zfs requires kernel patches for kernels 6.2 and up, and they always have to rebuild. Are these patched kernels just not cached?

February 22, 2024 at 04:19PM

https://old.reddit.com/r/NixOS/comments/1axmhym/aarch64_and_zfs_requires_kernel_patches_for/

view this post on Zulip IFTTT (Feb 23 2024 at 19:14):

Beginner questions...

February 23, 2024 at 05:27AM

https://old.reddit.com/r/NixOS/comments/1ay0ft5/beginner_questions/

view this post on Zulip IFTTT (Feb 24 2024 at 00:13):

OS as Code - My Experience of NixOS

February 23, 2024 at 08:18AM

https://old.reddit.com/r/NixOS/comments/1ay4hjs/os_as_code_my_experience_of_nixos/

view this post on Zulip IFTTT (Feb 25 2024 at 03:18):

Why I'm seriously considering migrating to NixOS next month (As a long time Arch user)

February 24, 2024 at 04:04PM

https://old.reddit.com/r/NixOS/comments/1az9n3u/why_im_seriously_considering_migrating_to_nixos/

view this post on Zulip IFTTT (Feb 25 2024 at 18:13):

NixOS is about to hit an inflection point, we're going exponential soon!

February 25, 2024 at 08:43AM

https://old.reddit.com/r/NixOS/comments/1azscni/nixos_is_about_to_hit_an_inflection_point_were/

view this post on Zulip IFTTT (Feb 26 2024 at 10:13):

What's the end-goal for nixpkgs?

February 25, 2024 at 06:21PM

https://old.reddit.com/r/NixOS/comments/1b069tm/whats_the_endgoal_for_nixpkgs/

view this post on Zulip IFTTT (Feb 26 2024 at 12:13):

Contributing Scrutiny to Nixpkgs

February 25, 2024 at 01:43AM

https://old.reddit.com/r/NixOS/comments/1azk5v4/contributing_scrutiny_to_nixpkgs/

view this post on Zulip IFTTT (Feb 26 2024 at 19:09):

NixOS: Learning by doing, a step by step guideline request for newbies

February 26, 2024 at 04:56AM

https://old.reddit.com/r/NixOS/comments/1b0guwd/nixos_learning_by_doing_a_step_by_step_guideline/

view this post on Zulip IFTTT (Feb 27 2024 at 07:13):

So, about KDE Plasma

February 26, 2024 at 11:30AM

https://old.reddit.com/r/NixOS/comments/1b0qb1u/so_about_kde_plasma/

view this post on Zulip IFTTT (Feb 27 2024 at 18:14):

NixOS: Everything Everywhere All At Once (No Boilerplate)

February 27, 2024 at 02:45AM

https://old.reddit.com/r/NixOS/comments/1b18ylg/nixos_everything_everywhere_all_at_once_no/

view this post on Zulip IFTTT (Feb 27 2024 at 22:13):

Introduction to module system

February 27, 2024 at 06:26AM

https://old.reddit.com/r/NixOS/comments/1b1d46d/introduction_to_module_system/

view this post on Zulip IFTTT (Feb 28 2024 at 16:13):

I made a Nix function to easily sandbox apps using bubblewrap - with portals support.

February 28, 2024 at 12:49AM

https://old.reddit.com/r/NixOS/comments/1b21fbt/i_made_a_nix_function_to_easily_sandbox_apps/

view this post on Zulip IFTTT (Feb 28 2024 at 23:13):

KDE 6 is merged into master!

February 28, 2024 at 11:50AM

https://old.reddit.com/r/NixOS/comments/1b2fi0b/kde_6_is_merged_into_master/

view this post on Zulip IFTTT (Feb 29 2024 at 16:09):

lovin nixos

February 28, 2024 at 11:20AM

https://old.reddit.com/r/NixOS/comments/1b2epz3/lovin_nixos/

view this post on Zulip IFTTT (Mar 01 2024 at 01:18):

Good, clear explanation of flakes for normie desktop users like me

February 29, 2024 at 11:21AM

https://old.reddit.com/r/NixOS/comments/1b38ret/good_clear_explanation_of_flakes_for_normie/

view this post on Zulip IFTTT (Mar 01 2024 at 12:13):

Today I learned of the glory that is NixOS.

February 29, 2024 at 11:15PM

https://old.reddit.com/r/NixOS/comments/1b3oawg/today_i_learned_of_the_glory_that_is_nixos/

view this post on Zulip IFTTT (Mar 02 2024 at 00:13):

I'd love NixOS but I'm scared about one thing.

March 01, 2024 at 10:17AM

https://old.reddit.com/r/NixOS/comments/1b41a37/id_love_nixos_but_im_scared_about_one_thing/

view this post on Zulip IFTTT (Mar 03 2024 at 13:13):

I just realized... :sweat_smile:

March 02, 2024 at 08:43PM

https://old.reddit.com/r/NixOS/comments/1b58kqc/i_just_realized/

view this post on Zulip IFTTT (Mar 03 2024 at 19:09):

back to square one

March 03, 2024 at 08:50AM

https://old.reddit.com/r/NixOS/comments/1b5lp6v/back_to_square_one/

view this post on Zulip IFTTT (Mar 04 2024 at 09:13):

Nix community is amazing!

March 03, 2024 at 08:50PM

https://old.reddit.com/r/NixOS/comments/1b62b0j/nix_community_is_amazing/

view this post on Zulip IFTTT (Mar 04 2024 at 19:13):

Nixarr: The Media Server Nixos Module

March 04, 2024 at 12:49AM

https://old.reddit.com/r/NixOS/comments/1b668aw/nixarr_the_media_server_nixos_module/

view this post on Zulip IFTTT (Mar 04 2024 at 20:13):

I've tried NixOS 3 times now, and I honestly feel like I should just admit defeat and head back home to Arch

March 04, 2024 at 07:38AM

https://old.reddit.com/r/NixOS/comments/1b6dwux/ive_tried_nixos_3_times_now_and_i_honestly_feel/

view this post on Zulip IFTTT (Mar 06 2024 at 08:13):

Realised sudo nix-collect-garbage doesn't get everything

March 05, 2024 at 12:27AM

https://old.reddit.com/r/NixOS/comments/1b70daq/realised_sudo_nixcollectgarbage_doesnt_get/

view this post on Zulip IFTTT (Mar 06 2024 at 12:13):

nh - Yet another nix cli helper

March 04, 2024 at 05:08PM

https://old.reddit.com/r/NixOS/comments/1b6s4in/nh_yet_another_nix_cli_helper/

view this post on Zulip IFTTT (Mar 06 2024 at 20:14):

Is NixOS Good for Intermediate Linux users?

March 02, 2024 at 08:26PM

https://old.reddit.com/r/NixOS/comments/1b589jf/is_nixos_good_for_intermediate_linux_users/

view this post on Zulip IFTTT (Mar 07 2024 at 01:18):

The Joys of NixOS

March 06, 2024 at 04:25AM

https://old.reddit.com/r/NixOS/comments/1b7yf3l/the_joys_of_nixos/

view this post on Zulip IFTTT (Mar 08 2024 at 08:13):

NixOS feasibility in enterprise

March 04, 2024 at 01:56PM

https://old.reddit.com/r/NixOS/comments/1b6nftb/nixos_feasibility_in_enterprise/

view this post on Zulip IFTTT (Mar 08 2024 at 12:09):

Why is the Nix documentation so bad?

March 08, 2024 at 01:02AM

https://old.reddit.com/r/NixOS/comments/1b9jrzt/why_is_the_nix_documentation_so_bad/

view this post on Zulip IFTTT (Mar 08 2024 at 19:13):

Replacing docker-compose with Nix for development

March 06, 2024 at 11:20AM

https://old.reddit.com/r/NixOS/comments/1b88ix7/replacing_dockercompose_with_nix_for_development/

view this post on Zulip IFTTT (Mar 09 2024 at 07:09):

Rust programmers: How do you get pkg-config to work?

March 07, 2024 at 12:37AM

https://old.reddit.com/r/NixOS/comments/1b8pqoq/rust_programmers_how_do_you_get_pkgconfig_to_work/

view this post on Zulip IFTTT (Mar 09 2024 at 11:13):

NixOS is an amazing server OS

March 08, 2024 at 11:04PM

https://old.reddit.com/r/NixOS/comments/1babsps/nixos_is_an_amazing_server_os/

view this post on Zulip IFTTT (Mar 10 2024 at 18:13):

NixOS and devops?

March 09, 2024 at 12:04AM

https://old.reddit.com/r/NixOS/comments/1bacom7/nixos_and_devops/

view this post on Zulip IFTTT (Mar 11 2024 at 16:09):

A homelab dashboard for NixOS

March 05, 2024 at 01:52PM

https://old.reddit.com/r/NixOS/comments/1b7hrwe/a_homelab_dashboard_for_nixos/

view this post on Zulip IFTTT (Mar 11 2024 at 23:13):

Quick Check... is this possible? before I get too deep in research

March 09, 2024 at 05:42PM

https://old.reddit.com/r/NixOS/comments/1baye9q/quick_check_is_this_possible_before_i_get_too/

view this post on Zulip IFTTT (Mar 12 2024 at 02:13):

is it a bad practice to use normal configs instead of nix files?

March 09, 2024 at 03:10AM

https://old.reddit.com/r/NixOS/comments/1bafe9e/is_it_a_bad_practice_to_use_normal_configs/

view this post on Zulip IFTTT (Mar 12 2024 at 09:13):

Is it safe to replace the "/etc/nixos" folder with a sym link? (And will this sym link be preserved when I use "sudo nixos-rebuild switch"?

March 06, 2024 at 04:56PM

https://old.reddit.com/r/NixOS/comments/1b8gult/is_it_safe_to_replace_the_etcnixos_folder_with_a/

view this post on Zulip IFTTT (Mar 12 2024 at 13:13):

Main use of NixOS as an operating system

March 11, 2024 at 07:28AM

https://old.reddit.com/r/NixOS/comments/1bc4hgo/main_use_of_nixos_as_an_operating_system/

view this post on Zulip IFTTT (Mar 13 2024 at 13:13):

NixOS vs Immutable + Nix

March 10, 2024 at 12:42AM

https://old.reddit.com/r/NixOS/comments/1bb5o8y/nixos_vs_immutable_nix/

view this post on Zulip IFTTT (Mar 13 2024 at 20:13):

SCaLE and NixCon North America kick off Thursday in Pasadena, CA - March 14-17, 2024

March 09, 2024 at 12:21PM

https://old.reddit.com/r/NixOS/comments/1bar5pu/scale_and_nixcon_north_america_kick_off_thursday/

view this post on Zulip IFTTT (Mar 13 2024 at 23:13):

Share your Nixos/ Neovim Gotchas

March 12, 2024 at 07:35PM

https://old.reddit.com/r/NixOS/comments/1bdgc3j/share_your_nixos_neovim_gotchas/

view this post on Zulip IFTTT (Mar 14 2024 at 09:09):

Am I adding modularity the right way?

March 07, 2024 at 11:19AM

https://old.reddit.com/r/NixOS/comments/1b92uwo/am_i_adding_modularity_the_right_way/

view this post on Zulip IFTTT (Mar 14 2024 at 10:14):

Selectively Using Service Modules from NixOS Unstable

March 13, 2024 at 10:36AM

https://old.reddit.com/r/NixOS/comments/1bdxhrf/selectively_using_service_modules_from_nixos/

view this post on Zulip IFTTT (Mar 14 2024 at 12:14):

Open Letter | NixOS Users Against MIC Sponsorship

March 14, 2024 at 12:35AM

https://old.reddit.com/r/NixOS/comments/1befnhr/open_letter_nixos_users_against_mic_sponsorship/

view this post on Zulip IFTTT (Mar 14 2024 at 17:13):

Advice from advanced Nix users

March 13, 2024 at 08:19AM

https://old.reddit.com/r/NixOS/comments/1bdu27e/advice_from_advanced_nix_users/

view this post on Zulip IFTTT (Mar 14 2024 at 18:13):

Nixos for gaming (bare with me)

March 13, 2024 at 11:45AM

https://old.reddit.com/r/NixOS/comments/1bdz9lj/nixos_for_gaming_bare_with_me/

view this post on Zulip IFTTT (Mar 15 2024 at 13:09):

meme - NixOS Infection

March 15, 2024 at 05:00AM

https://old.reddit.com/r/NixOS/comments/1bfc9tm/meme_nixos_infection/

view this post on Zulip IFTTT (Mar 15 2024 at 14:13):

How are you managing nixos hosts in production across fleets for services?

March 14, 2024 at 06:19PM

https://old.reddit.com/r/NixOS/comments/1bf1vrm/how_are_you_managing_nixos_hosts_in_production/

view this post on Zulip IFTTT (Mar 15 2024 at 22:13):

NixOS gaming vs other distros?

March 15, 2024 at 01:45AM

https://old.reddit.com/r/NixOS/comments/1bf9c0z/nixos_gaming_vs_other_distros/

view this post on Zulip IFTTT (Mar 16 2024 at 11:08):

Introducing FlakeHub Cache

March 15, 2024 at 11:18AM

https://old.reddit.com/r/NixOS/comments/1bfklkx/introducing_flakehub_cache/

view this post on Zulip IFTTT (Mar 17 2024 at 00:13):

How do you guys justify the novelty on daily personal machines (non servers)

March 15, 2024 at 06:17PM

https://old.reddit.com/r/NixOS/comments/1bfu543/how_do_you_guys_justify_the_novelty_on_daily/

view this post on Zulip IFTTT (Mar 17 2024 at 09:13):

NixOS on Orange Pi 5 (Plus) with socle: new features and documentation

March 16, 2024 at 05:02PM

https://old.reddit.com/r/NixOS/comments/1bgjx2p/nixos_on_orange_pi_5_plus_with_socle_new_features/

view this post on Zulip IFTTT (Mar 18 2024 at 07:13):

Starting NixOS

March 16, 2024 at 06:48PM

https://old.reddit.com/r/NixOS/comments/1bgm2br/starting_nixos/

view this post on Zulip IFTTT (Mar 18 2024 at 10:11):

how_to_start_nix

March 17, 2024 at 05:41AM

https://old.reddit.com/r/NixOS/comments/1bgwlv6/how_to_start_nix/

view this post on Zulip IFTTT (Mar 18 2024 at 23:13):

How to Patch A Package Source on NixOS: Case Study - Alejandra4

March 16, 2024 at 02:31AM

https://old.reddit.com/r/NixOS/comments/1bg29z4/how_to_patch_a_package_source_on_nixos_case_study/

view this post on Zulip IFTTT (Mar 20 2024 at 16:13):

devenv 1.0: Rewrite in Rust

March 20, 2024 at 06:41AM

https://old.reddit.com/r/NixOS/comments/1bjdpjp/devenv_10_rewrite_in_rust/

view this post on Zulip IFTTT (Mar 22 2024 at 02:19):

bazel running in nix running in guix

March 16, 2024 at 09:51AM

https://old.reddit.com/r/NixOS/comments/1bgagzl/bazel_running_in_nix_running_in_guix/

view this post on Zulip IFTTT (Mar 22 2024 at 09:09):

Is home manager the only good way of setting your themes?

March 18, 2024 at 03:33PM

https://old.reddit.com/r/NixOS/comments/1bi45uw/is_home_manager_the_only_good_way_of_setting_your/

view this post on Zulip IFTTT (Mar 22 2024 at 10:13):

Using NixOS for my homelab

March 21, 2024 at 11:58PM

https://old.reddit.com/r/NixOS/comments/1bkt4rw/using_nixos_for_my_homelab/

view this post on Zulip IFTTT (Mar 22 2024 at 19:13):

Is anyone else having trouble building waybar on the unstable channel?

March 20, 2024 at 03:32PM

https://old.reddit.com/r/NixOS/comments/1bjqjr5/is_anyone_else_having_trouble_building_waybar_on/

view this post on Zulip IFTTT (Mar 23 2024 at 02:13):

Should we add nix flakes to the godot main repo?

March 19, 2024 at 02:37PM

https://old.reddit.com/r/NixOS/comments/1biw3iy/should_we_add_nix_flakes_to_the_godot_main_repo/

view this post on Zulip IFTTT (Mar 23 2024 at 10:08):

nix-config-modules: Module system to simplify Nix configs for joint NixOS/home-manager setups

March 22, 2024 at 09:24AM

https://old.reddit.com/r/NixOS/comments/1bl3b5f/nixconfigmodules_module_system_to_simplify_nix/

view this post on Zulip IFTTT (Mar 23 2024 at 16:13):

Is unstable... unstable?

March 23, 2024 at 04:01AM

https://old.reddit.com/r/NixOS/comments/1blpk58/is_unstable_unstable/

view this post on Zulip IFTTT (Mar 24 2024 at 00:13):

Advanced NixOS Flake Setup Example

March 20, 2024 at 03:05PM

https://old.reddit.com/r/NixOS/comments/1bjpwc5/advanced_nixos_flake_setup_example/

view this post on Zulip IFTTT (Mar 24 2024 at 02:13):

How do you structure your modules and Imports

March 21, 2024 at 04:13AM

https://old.reddit.com/r/NixOS/comments/1bk430s/how_do_you_structure_your_modules_and_imports/

view this post on Zulip IFTTT (Mar 24 2024 at 12:13):

I run NixOS btw

March 24, 2024 at 04:12AM

https://old.reddit.com/r/NixOS/comments/1bmibb7/i_run_nixos_btw/

view this post on Zulip IFTTT (Mar 24 2024 at 13:09):

NixOS Search - Sort by Popularity?

March 23, 2024 at 09:44PM

https://old.reddit.com/r/NixOS/comments/1bmcjc0/nixos_search_sort_by_popularity/

view this post on Zulip IFTTT (Mar 24 2024 at 19:13):

Why are flakes not stable yet

March 24, 2024 at 09:46AM

https://old.reddit.com/r/NixOS/comments/1bmp7os/why_are_flakes_not_stable_yet/

view this post on Zulip IFTTT (Mar 25 2024 at 14:09):

What do you put in configuration.nix and what in home-manager?

March 24, 2024 at 12:46PM

https://old.reddit.com/r/NixOS/comments/1bmtjjs/what_do_you_put_in_configurationnix_and_what_in/

view this post on Zulip IFTTT (Mar 25 2024 at 16:09):

NixOS-based container and VM provisioning

March 24, 2024 at 08:04AM

https://old.reddit.com/r/NixOS/comments/1bmmuzz/nixosbased_container_and_vm_provisioning/

view this post on Zulip IFTTT (Mar 26 2024 at 09:13):

How I finally installed NixOS

March 24, 2024 at 12:51PM

https://old.reddit.com/r/NixOS/comments/1bmtoae/how_i_finally_installed_nixos/

view this post on Zulip IFTTT (Mar 26 2024 at 18:18):

How do I pick between devenv, devshell, devbox and flox?

March 26, 2024 at 03:16AM

https://old.reddit.com/r/NixOS/comments/1bo4d3v/how_do_i_pick_between_devenv_devshell_devbox_and/

view this post on Zulip IFTTT (Mar 27 2024 at 16:14):

Tailscale and systemd on NixOS

March 27, 2024 at 01:56AM

https://old.reddit.com/r/NixOS/comments/1box9ij/tailscale_and_systemd_on_nixos/

view this post on Zulip IFTTT (Mar 27 2024 at 21:13):

That one thing you wish you’d have come across sooner?

March 27, 2024 at 07:43AM

https://old.reddit.com/r/NixOS/comments/1bp3lh6/that_one_thing_you_wish_youd_have_come_across/

view this post on Zulip IFTTT (Mar 28 2024 at 15:14):

How much of a pain is configuring programs?

March 27, 2024 at 04:26PM

https://old.reddit.com/r/NixOS/comments/1bpggn3/how_much_of_a_pain_is_configuring_programs/

view this post on Zulip IFTTT (Mar 29 2024 at 02:13):

Beginner's guide to sunshine game/desktop streaming on NixOS

March 28, 2024 at 11:09AM

https://old.reddit.com/r/NixOS/comments/1bq2bx4/beginners_guide_to_sunshine_gamedesktop_streaming/

view this post on Zulip IFTTT (Mar 29 2024 at 17:13):

Best beginner guide?

March 28, 2024 at 10:32AM

https://old.reddit.com/r/NixOS/comments/1bq1e2z/best_beginner_guide/

view this post on Zulip IFTTT (Mar 29 2024 at 19:18):

Do you use btrfs?

March 29, 2024 at 03:45AM

https://old.reddit.com/r/NixOS/comments/1bqm7hv/do_you_use_btrfs/

view this post on Zulip IFTTT (Mar 30 2024 at 03:13):

Xpost for Unstable Users: "Backdoor in upstream xz/liblzma leading to SSH server compromise" (supposedly primarily relevant for OpenSSH w/ systemd patches) [CVE-2024-3094]

March 29, 2024 at 02:14PM

https://old.reddit.com/r/NixOS/comments/1bqzjn6/xpost_for_unstable_users_backdoor_in_upstream/

view this post on Zulip IFTTT (Mar 31 2024 at 17:13):

New to Nix and went in pretty blind, I love that i can run Pantheon! But don't love that I'm having a bit of a time getting Nvidia drivers working, any help would be greatly appreciated!

March 30, 2024 at 01:38PM

https://old.reddit.com/r/NixOS/comments/1brrp6w/new_to_nix_and_went_in_pretty_blind_i_love_that_i/

view this post on Zulip IFTTT (Mar 31 2024 at 20:08):

How can I deploy/create the entire system with a single command?

March 31, 2024 at 02:17AM

https://old.reddit.com/r/NixOS/comments/1bs686e/how_can_i_deploycreate_the_entire_system_with_a/

view this post on Zulip IFTTT (Apr 02 2024 at 03:13):

The official NixOS wiki is live(not an april fools joke)

April 01, 2024 at 06:25PM

https://old.reddit.com/r/NixOS/comments/1btm2pw/the_official_nixos_wiki_is_livenot_an_april_fools/

view this post on Zulip IFTTT (Apr 02 2024 at 11:13):

NixOS - Is it an good Daily Use Distro for Software Developers?

April 01, 2024 at 04:41PM

https://old.reddit.com/r/NixOS/comments/1btjoys/nixos_is_it_an_good_daily_use_distro_for_software/

view this post on Zulip IFTTT (Apr 02 2024 at 12:18):

NixOS unaffected by TZ vulnerability CVE-2024-3094

April 02, 2024 at 12:28AM

https://old.reddit.com/r/NixOS/comments/1btsomk/nixos_unaffected_by_tz_vulnerability_cve20243094/

view this post on Zulip IFTTT (Apr 02 2024 at 21:13):

Bootstrappable?

April 02, 2024 at 10:48AM

https://old.reddit.com/r/NixOS/comments/1bu52m1/bootstrappable/

view this post on Zulip IFTTT (Apr 03 2024 at 09:13):

How the xz backdoor highlights a major flaw in Nix

April 02, 2024 at 08:28PM

https://old.reddit.com/r/NixOS/comments/1buikof/how_the_xz_backdoor_highlights_a_major_flaw_in_nix/

view this post on Zulip IFTTT (Apr 03 2024 at 20:09):

Sometimes i love nixos other times im losing my sanity on it

April 03, 2024 at 05:27AM

https://old.reddit.com/r/NixOS/comments/1burc2a/sometimes_i_love_nixos_other_times_im_losing_my/

view this post on Zulip IFTTT (Apr 04 2024 at 03:08):

NixOS Foundation PR to add sponsorship policy

April 03, 2024 at 01:46PM

https://old.reddit.com/r/NixOS/comments/1bv3s3s/nixos_foundation_pr_to_add_sponsorship_policy/

view this post on Zulip IFTTT (Apr 04 2024 at 21:13):

Recently it seems like everyone is switching to NixOS?

April 04, 2024 at 09:53AM

https://old.reddit.com/r/NixOS/comments/1bvs93a/recently_it_seems_like_everyone_is_switching_to/

view this post on Zulip IFTTT (Apr 05 2024 at 11:18):

Is nixos a good fit if you install a bunch of random software.

April 04, 2024 at 01:49PM

https://old.reddit.com/r/NixOS/comments/1bvyfl5/is_nixos_a_good_fit_if_you_install_a_bunch_of/

view this post on Zulip IFTTT (Apr 06 2024 at 11:13):

How steep is the learning curve for NixOS for a newbie?

April 05, 2024 at 06:41AM

https://old.reddit.com/r/NixOS/comments/1bwic77/how_steep_is_the_learning_curve_for_nixos_for_a/

view this post on Zulip IFTTT (Apr 06 2024 at 18:13):

Selfhosting on NixOS, should i use built in services, or docker?

April 06, 2024 at 04:16AM

https://old.reddit.com/r/NixOS/comments/1bx938c/selfhosting_on_nixos_should_i_use_built_in/

view this post on Zulip IFTTT (Apr 07 2024 at 04:13):

Introducing Flake-Containers: A simple PoC

April 06, 2024 at 02:48PM

https://old.reddit.com/r/NixOS/comments/1bxn8l7/introducing_flakecontainers_a_simple_poc/

view this post on Zulip IFTTT (Apr 07 2024 at 08:13):

Nix is incredible

April 06, 2024 at 08:23PM

https://old.reddit.com/r/NixOS/comments/1bxucst/nix_is_incredible/

view this post on Zulip IFTTT (Apr 08 2024 at 06:13):

catppuccin-nix: the soothing pastel theme, but for nix!

April 07, 2024 at 02:14PM

https://old.reddit.com/r/NixOS/comments/1byfm71/catppuccinnix_the_soothing_pastel_theme_but_for/

view this post on Zulip IFTTT (Apr 08 2024 at 19:13):

Finished my first config in VM and transferred to hardware. NixOS is awesome and I'm only getting started. Ain't coming back to other distros ever again!

April 08, 2024 at 08:10AM

https://old.reddit.com/r/NixOS/comments/1bz0bqc/finished_my_first_config_in_vm_and_transferred_to/

view this post on Zulip IFTTT (Apr 10 2024 at 04:13):

Chaos Computer Club : Fully declarative Homelab on NixOS :snowflake: (glt24)

April 08, 2024 at 12:28AM

https://old.reddit.com/r/NixOS/comments/1byrugu/chaos_computer_club_fully_declarative_homelab_on/

view this post on Zulip IFTTT (Apr 10 2024 at 16:09):

NixOS alternatives

April 09, 2024 at 08:40AM

https://old.reddit.com/r/NixOS/comments/1bzvaof/nixos_alternatives/

view this post on Zulip IFTTT (Apr 11 2024 at 13:13):

introducing nix-inspect: a TUI for browsing nix configs and other expressions!

April 11, 2024 at 04:36AM

https://old.reddit.com/r/NixOS/comments/1c1cty8/introducing_nixinspect_a_tui_for_browsing_nix/

view this post on Zulip IFTTT (Apr 11 2024 at 21:13):

is this normal?

April 08, 2024 at 03:23PM

https://old.reddit.com/r/NixOS/comments/1bzbg3i/is_this_normal/

view this post on Zulip IFTTT (Apr 12 2024 at 03:13):

Loving Nix OS

April 11, 2024 at 05:50PM

https://old.reddit.com/r/NixOS/comments/1c1vq7t/loving_nix_os/

view this post on Zulip IFTTT (Apr 12 2024 at 18:14):

devenv.sh has been revamped :sparkles:

April 12, 2024 at 03:04AM

https://old.reddit.com/r/NixOS/comments/1c25d6p/devenvsh_has_been_revamped/

view this post on Zulip IFTTT (Apr 13 2024 at 22:13):

nixos-rebuild switch and home-manager switch building a crazy amount of packages

April 09, 2024 at 11:32PM

https://old.reddit.com/r/NixOS/comments/1c0ezdr/nixosrebuild_switch_and_homemanager_switch/

view this post on Zulip IFTTT (Apr 14 2024 at 04:13):

Do you recommend me NixOS, what problems may I find?

April 07, 2024 at 02:31AM

https://old.reddit.com/r/NixOS/comments/1by0ee3/do_you_recommend_me_nixos_what_problems_may_i_find/

view this post on Zulip IFTTT (Apr 14 2024 at 10:18):

Installation on a Framework 16

April 08, 2024 at 07:58PM

https://old.reddit.com/r/NixOS/comments/1bzhm13/installation_on_a_framework_16/

view this post on Zulip IFTTT (Apr 14 2024 at 18:13):

How well do you think NixOS correlates with infrastructure as code?

April 12, 2024 at 02:34PM

https://old.reddit.com/r/NixOS/comments/1c2kyo2/how_well_do_you_think_nixos_correlates_with/

view this post on Zulip IFTTT (Apr 14 2024 at 21:13):

Home Manager vs. copied dot files?

April 14, 2024 at 06:22AM

https://old.reddit.com/r/NixOS/comments/1c3tgs2/home_manager_vs_copied_dot_files/

view this post on Zulip IFTTT (Apr 15 2024 at 10:09):

Getting ready to give up on NixOS

April 15, 2024 at 12:31AM

https://old.reddit.com/r/NixOS/comments/1c4g9n4/getting_ready_to_give_up_on_nixos/

view this post on Zulip IFTTT (Apr 15 2024 at 23:09):

Homelab refactor after NixOS discovery. Bad idea?

April 14, 2024 at 03:40PM

https://old.reddit.com/r/NixOS/comments/1c46ghj/homelab_refactor_after_nixos_discovery_bad_idea/

view this post on Zulip IFTTT (Apr 16 2024 at 03:13):

Declarative dotfiles without home-manager?

April 14, 2024 at 02:07PM

https://old.reddit.com/r/NixOS/comments/1c44b0x/declarative_dotfiles_without_homemanager/

view this post on Zulip IFTTT (Apr 16 2024 at 16:08):

[poll] Nixpkgs Contributors: how difficult do you feel it is to merge a PR? - Development

April 11, 2024 at 04:25AM

https://old.reddit.com/r/NixOS/comments/1c1cmn2/poll_nixpkgs_contributors_how_difficult_do_you/

view this post on Zulip IFTTT (Apr 16 2024 at 23:09):

I deleted my boot partition while in the middle of a Twitch stream

April 16, 2024 at 12:44PM

https://old.reddit.com/r/NixOS/comments/1c5pc0y/i_deleted_my_boot_partition_while_in_the_middle/

view this post on Zulip IFTTT (Apr 17 2024 at 16:09):

Git commit --to--> nixos-rebuild

April 16, 2024 at 05:36PM

https://old.reddit.com/r/NixOS/comments/1c5w9dh/git_commit_to_nixosrebuild/

view this post on Zulip IFTTT (Apr 18 2024 at 07:09):

How to use both stable and unstable nixpkgs in a flake?

April 17, 2024 at 02:44PM

https://old.reddit.com/r/NixOS/comments/1c6m5j4/how_to_use_both_stable_and_unstable_nixpkgs_in_a/

view this post on Zulip IFTTT (Apr 19 2024 at 01:08):

Best way to manage Python venv?

April 16, 2024 at 02:23PM

https://old.reddit.com/r/NixOS/comments/1c5rrxl/best_way_to_manage_python_venv/

view this post on Zulip IFTTT (Apr 19 2024 at 07:09):

Gaming on nixos

April 18, 2024 at 12:54PM

https://old.reddit.com/r/NixOS/comments/1c7csct/gaming_on_nixos/

view this post on Zulip IFTTT (Apr 19 2024 at 22:13):

Best way of implementing NixOS config updates for normies?

April 18, 2024 at 05:33PM

https://old.reddit.com/r/NixOS/comments/1c7jg5t/best_way_of_implementing_nixos_config_updates_for/

view this post on Zulip IFTTT (Apr 20 2024 at 05:13):

Can I remove ~/.nix-defexpr and ~/nix-profile?

April 18, 2024 at 08:25AM

https://old.reddit.com/r/NixOS/comments/1c763xn/can_i_remove_nixdefexpr_and_nixprofile/

view this post on Zulip IFTTT (Apr 20 2024 at 11:13):

NixOS Configs!

April 20, 2024 at 12:14AM

https://old.reddit.com/r/NixOS/comments/1c8jvdl/nixos_configs/

view this post on Zulip IFTTT (Apr 21 2024 at 14:08):

Error while install qtile-extras

April 20, 2024 at 08:49AM

https://old.reddit.com/r/NixOS/comments/1c8t5xd/error_while_install_qtileextras/

view this post on Zulip IFTTT (Apr 21 2024 at 23:09):

open letter to the NixOS foundation

April 21, 2024 at 02:42PM

https://old.reddit.com/r/NixOS/comments/1c9tlw3/open_letter_to_the_nixos_foundation/

view this post on Zulip IFTTT (Apr 22 2024 at 01:13):

The declarative configuration of NixOS appears perfect for help from generative AI

April 21, 2024 at 02:48AM

https://old.reddit.com/r/NixOS/comments/1c9e2kk/the_declarative_configuration_of_nixos_appears/

view this post on Zulip IFTTT (Apr 22 2024 at 06:13):

Compiled half a system for no reason (Gentoo experience)

April 21, 2024 at 05:31PM

https://old.reddit.com/r/NixOS/comments/1c9xbz2/compiled_half_a_system_for_no_reason_gentoo/

view this post on Zulip IFTTT (Apr 22 2024 at 13:13):

How to actually do the thing NixOS was intended for?

April 21, 2024 at 10:13PM

https://old.reddit.com/r/NixOS/comments/1ca2kpx/how_to_actually_do_the_thing_nixos_was_intended/

view this post on Zulip IFTTT (Apr 23 2024 at 20:09):

Nixos for android

April 22, 2024 at 03:43PM

https://old.reddit.com/r/NixOS/comments/1caohq7/nixos_for_android/

view this post on Zulip IFTTT (Apr 24 2024 at 04:13):

NixOS as a learning tool

April 23, 2024 at 05:11PM

https://old.reddit.com/r/NixOS/comments/1cbkces/nixos_as_a_learning_tool/

view this post on Zulip IFTTT (Apr 24 2024 at 19:09):

nixpkgs: Anticipating breaking changes as they arrive on stable.

April 24, 2024 at 07:55AM

https://old.reddit.com/r/NixOS/comments/1cc0a4a/nixpkgs_anticipating_breaking_changes_as_they/

view this post on Zulip IFTTT (Apr 24 2024 at 23:13):

Looking for guidance on how to keep NixOS as my daily driver for work.

April 23, 2024 at 08:02PM

https://old.reddit.com/r/NixOS/comments/1cbnud1/looking_for_guidance_on_how_to_keep_nixos_as_my/

view this post on Zulip IFTTT (Apr 24 2024 at 23:13):

How do you test and debug your nix code?

April 24, 2024 at 12:03PM

https://old.reddit.com/r/NixOS/comments/1cc6kkt/how_do_you_test_and_debug_your_nix_code/

view this post on Zulip IFTTT (Apr 25 2024 at 06:18):

What is the best method to install packages if I only intend to have a single user on my system?

April 24, 2024 at 03:19PM

https://old.reddit.com/r/NixOS/comments/1ccbf7a/what_is_the_best_method_to_install_packages_if_i/

view this post on Zulip IFTTT (Apr 26 2024 at 00:13):

In case I'm unable to return, wish you all the best

April 25, 2024 at 03:57PM

https://old.reddit.com/r/NixOS/comments/1cd5fod/in_case_im_unable_to_return_wish_you_all_the_best/

view this post on Zulip IFTTT (Apr 26 2024 at 05:13):

The dire state of NixOS's moderation culture

April 25, 2024 at 07:25PM

https://old.reddit.com/r/NixOS/comments/1cda1h4/the_dire_state_of_nixoss_moderation_culture/

view this post on Zulip IFTTT (Apr 26 2024 at 15:13):

What improvements are they talking about? Guix and Nix

April 26, 2024 at 01:05AM

https://old.reddit.com/r/NixOS/comments/1cdfukg/what_improvements_are_they_talking_about_guix_and/

view this post on Zulip IFTTT (Apr 26 2024 at 20:13):

On community in Nix - Eelco Dolstra

April 26, 2024 at 11:57AM

https://old.reddit.com/r/NixOS/comments/1cdtgck/on_community_in_nix_eelco_dolstra/

view this post on Zulip IFTTT (Apr 27 2024 at 09:13):

Been using nix for half a year, feeling kind of out of touch with my system?

April 26, 2024 at 11:23PM

https://old.reddit.com/r/NixOS/comments/1ce7oov/been_using_nix_for_half_a_year_feeling_kind_of/

view this post on Zulip IFTTT (Apr 27 2024 at 15:13):

Transparency about jonringer’s suspension

April 27, 2024 at 06:23AM

https://old.reddit.com/r/NixOS/comments/1ceeg8h/transparency_about_jonringers_suspension/

view this post on Zulip IFTTT (Apr 27 2024 at 20:13):

Thoughts on Jon Ringer's temporary suspension

April 27, 2024 at 09:47AM

https://old.reddit.com/r/NixOS/comments/1ceiz36/thoughts_on_jon_ringers_temporary_suspension/

view this post on Zulip IFTTT (Apr 28 2024 at 01:08):

Fifteen contributors have officially removed themselves from maintaining Nixpkgs at the time of this submission, including Marsam, who had almost 18,000 commits over 8 years.

April 27, 2024 at 03:23PM

https://old.reddit.com/r/NixOS/comments/1ceqprq/fifteen_contributors_have_officially_removed/

view this post on Zulip IFTTT (Apr 28 2024 at 13:13):

I presented about Nix at Conf42 | Using Nix to create reproducible Golang development environments

April 27, 2024 at 12:53PM

https://old.reddit.com/r/NixOS/comments/1cenaz8/i_presented_about_nix_at_conf42_using_nix_to/

view this post on Zulip IFTTT (Apr 28 2024 at 21:13):

Is starting to contribute worth it?

April 28, 2024 at 01:57AM

https://old.reddit.com/r/NixOS/comments/1cf1xde/is_starting_to_contribute_worth_it/

view this post on Zulip IFTTT (Apr 29 2024 at 12:13):

Moderation no-go zones

April 29, 2024 at 02:57AM

https://old.reddit.com/r/NixOS/comments/1cfv8vo/moderation_nogo_zones/

view this post on Zulip IFTTT (May 01 2024 at 03:13):

Eelco steps down

April 30, 2024 at 05:44PM

https://old.reddit.com/r/NixOS/comments/1ch8vhv/eelco_steps_down/

view this post on Zulip IFTTT (May 01 2024 at 16:13):

What do you think of my new wallpaper?

May 01, 2024 at 04:36AM

https://old.reddit.com/r/NixOS/comments/1chjyfs/what_do_you_think_of_my_new_wallpaper/

view this post on Zulip IFTTT (May 02 2024 at 08:13):

Framework & NixOS Communities Join Forces

May 01, 2024 at 08:33PM

https://old.reddit.com/r/NixOS/comments/1ci5r64/framework_nixos_communities_join_forces/

view this post on Zulip IFTTT (May 02 2024 at 23:13):

Is NixOS The Best Gaming Distro | Linux Gaming Setup

May 02, 2024 at 10:14AM

https://old.reddit.com/r/NixOS/comments/1cil5y4/is_nixos_the_best_gaming_distro_linux_gaming_setup/

view this post on Zulip IFTTT (May 03 2024 at 13:13):

Guys, I did it

May 03, 2024 at 12:04AM

https://old.reddit.com/r/NixOS/comments/1cj2ess/guys_i_did_it/

view this post on Zulip IFTTT (May 03 2024 at 19:13):

2024 NixOS crisis tldr

May 03, 2024 at 08:42AM

https://old.reddit.com/r/NixOS/comments/1cjbt6l/2024_nixos_crisis_tldr/

view this post on Zulip IFTTT (May 04 2024 at 14:13):

Nix Board Update 1: Appointing a Constitutional Assembly

May 02, 2024 at 06:50PM

https://old.reddit.com/r/NixOS/comments/1ciwzag/nix_board_update_1_appointing_a_constitutional/

view this post on Zulip IFTTT (May 04 2024 at 22:13):

Speeding up ELF relocations for store-based systems

May 03, 2024 at 02:55PM

https://old.reddit.com/r/NixOS/comments/1cjkaqo/speeding_up_elf_relocations_for_storebased_systems/

view this post on Zulip IFTTT (May 05 2024 at 09:13):

REMINDER: Nix Zulip Assembly is open to almost anyone who has been active in the community!

May 04, 2024 at 06:00PM

https://old.reddit.com/r/NixOS/comments/1ckfeu0/reminder_nix_zulip_assembly_is_open_to_almost/

view this post on Zulip IFTTT (May 06 2024 at 06:08):

new nix community governance right now

May 05, 2024 at 01:54PM

https://old.reddit.com/r/NixOS/comments/1cl17mu/new_nix_community_governance_right_now/

view this post on Zulip IFTTT (May 06 2024 at 13:13):

I wonder how many "NixOS sux now" people are actually following https://nixpkgs.zulipchat.com/#narrow/stream/435724-governance/topic/Fundamental.20Principles

May 06, 2024 at 12:09AM

https://old.reddit.com/r/NixOS/comments/1clcwkf/i_wonder_how_many_nixos_sux_now_people_are/

view this post on Zulip IFTTT (May 06 2024 at 17:13):

Separating Nix drama discussions from technical/educational ones?

May 06, 2024 at 02:54AM

https://old.reddit.com/r/NixOS/comments/1clf7v8/separating_nix_drama_discussions_from/

view this post on Zulip IFTTT (May 07 2024 at 02:13):

There's a reason I don't use Gentoo...

May 06, 2024 at 02:01PM

https://old.reddit.com/r/NixOS/comments/1clu0do/theres_a_reason_i_dont_use_gentoo/

view this post on Zulip IFTTT (May 08 2024 at 11:08):

Can we get some flairs?

May 07, 2024 at 04:38PM

https://old.reddit.com/r/NixOS/comments/1cmq9zw/can_we_get_some_flairs/

view this post on Zulip IFTTT (May 08 2024 at 17:13):

Shea Levy has been suspended from the Governance Zulip

May 08, 2024 at 07:33AM

https://old.reddit.com/r/NixOS/comments/1cn60v1/shea_levy_has_been_suspended_from_the_governance/

view this post on Zulip IFTTT (May 09 2024 at 00:18):

Broken Promises: The Nix Governance Discussions

May 08, 2024 at 12:52PM

https://old.reddit.com/r/NixOS/comments/1cndnyw/broken_promises_the_nix_governance_discussions/

view this post on Zulip IFTTT (May 09 2024 at 18:08):

Daily driver

May 08, 2024 at 03:30PM

https://old.reddit.com/r/NixOS/comments/1cnhfse/daily_driver/

view this post on Zulip IFTTT (May 10 2024 at 19:13):

(meme) Me explaining my NixOS config to a random person

May 10, 2024 at 09:52AM

https://old.reddit.com/r/NixOS/comments/1cou95d/meme_me_explaining_my_nixos_config_to_a_random/

view this post on Zulip IFTTT (May 11 2024 at 19:13):

Looking For A Proper Guide On Learning The Nix Language | Where Is Nix/NixOS 101?

May 10, 2024 at 08:18PM

https://old.reddit.com/r/NixOS/comments/1cp7w20/looking_for_a_proper_guide_on_learning_the_nix/

view this post on Zulip IFTTT (May 11 2024 at 22:13):

33 generations on my first day. I love this.

May 11, 2024 at 11:32AM

https://old.reddit.com/r/NixOS/comments/1cpnyeo/33_generations_on_my_first_day_i_love_this/

view this post on Zulip IFTTT (May 13 2024 at 02:13):

How come NixOS is so awesome?

May 12, 2024 at 08:42AM

https://old.reddit.com/r/NixOS/comments/1cqapfu/how_come_nixos_is_so_awesome/

view this post on Zulip IFTTT (May 13 2024 at 05:13):

Report on NixOS Governance Discussions

May 12, 2024 at 02:19PM

https://old.reddit.com/r/NixOS/comments/1cqic4w/report_on_nixos_governance_discussions/

view this post on Zulip IFTTT (May 13 2024 at 21:13):

Is it possible to do offline updates of nixpkgs?

May 09, 2024 at 03:22PM

https://old.reddit.com/r/NixOS/comments/1co9spe/is_it_possible_to_do_offline_updates_of_nixpkgs/

view this post on Zulip IFTTT (May 15 2024 at 00:13):

open question for the community

May 14, 2024 at 11:50AM

https://old.reddit.com/r/NixOS/comments/1crzw4l/open_question_for_the_community/

view this post on Zulip IFTTT (May 15 2024 at 06:13):

Proposal: Nix Values

May 10, 2024 at 05:08PM

https://old.reddit.com/r/NixOS/comments/1cp4a3h/proposal_nix_values/

view this post on Zulip IFTTT (May 15 2024 at 15:13):

How does NixOS handle fast applications with rapid release cycles?

May 14, 2024 at 03:09AM

https://old.reddit.com/r/NixOS/comments/1crok4p/how_does_nixos_handle_fast_applications_with/

view this post on Zulip IFTTT (May 15 2024 at 20:18):

[Solution] Are Your Fonts Not Working? You Might Have Installed Them Wrong | Regular & Console (TTY)

May 12, 2024 at 01:56AM

https://old.reddit.com/r/NixOS/comments/1cq3jt8/solution_are_your_fonts_not_working_you_might/

view this post on Zulip IFTTT (May 15 2024 at 23:13):

Nix forked, but over politics instead of progress

May 14, 2024 at 06:17PM

https://old.reddit.com/r/NixOS/comments/1cs8qpj/nix_forked_but_over_politics_instead_of_progress/

view this post on Zulip IFTTT (May 16 2024 at 11:09):

NixOS Foundation Board: Constitutional Assembly Appointment - Announcements

May 15, 2024 at 08:37PM

https://old.reddit.com/r/NixOS/comments/1ct3tdb/nixos_foundation_board_constitutional_assembly/

view this post on Zulip IFTTT (May 16 2024 at 23:13):

Drama Consequences for a Potential New User

May 15, 2024 at 03:01AM

https://old.reddit.com/r/NixOS/comments/1csh3ku/drama_consequences_for_a_potential_new_user/

view this post on Zulip IFTTT (May 17 2024 at 07:13):

What is bad about documentation exactly?

May 16, 2024 at 10:48AM

https://old.reddit.com/r/NixOS/comments/1ctiy3f/what_is_bad_about_documentation_exactly/

view this post on Zulip IFTTT (May 17 2024 at 08:13):

Why a Generic Open Source Project Can't Also Be a Successful Civil Rights Project

May 15, 2024 at 08:16PM

https://old.reddit.com/r/NixOS/comments/1ct3fut/why_a_generic_open_source_project_cant_also_be_a/

view this post on Zulip IFTTT (May 18 2024 at 09:13):

Friendly reminder: optimize-store is not on by default and you may be using a lot of disk space

May 17, 2024 at 08:17PM

https://old.reddit.com/r/NixOS/comments/1cunvdw/friendly_reminder_optimizestore_is_not_on_by/

view this post on Zulip IFTTT (May 18 2024 at 14:18):

Acceptance threshold for "any project, event, or forum with Nix/NixOS branding"

May 18, 2024 at 12:13AM

https://old.reddit.com/r/NixOS/comments/1curmzm/acceptance_threshold_for_any_project_event_or/

view this post on Zulip IFTTT (May 19 2024 at 03:13):

FWIW, THIS is my definition of fascism

May 18, 2024 at 09:10AM

https://old.reddit.com/r/NixOS/comments/1cv0q6h/fwiw_this_is_my_definition_of_fascism/

view this post on Zulip IFTTT (May 19 2024 at 16:13):

Should I take the nix pill?

May 14, 2024 at 11:33AM

https://old.reddit.com/r/NixOS/comments/1crzgpl/should_i_take_the_nix_pill/

view this post on Zulip IFTTT (May 19 2024 at 22:18):

Building a Homelab, Part 4 - Nixification, Kubernetes

May 18, 2024 at 09:20PM

https://old.reddit.com/r/NixOS/comments/1cvftmy/building_a_homelab_part_4_nixification_kubernetes/

view this post on Zulip IFTTT (May 21 2024 at 02:08):

Name one thing you are not able to do because you are on NixOS and not on something more popular like Ubuntu/Debian/Fedora.

May 20, 2024 at 10:19AM

https://old.reddit.com/r/NixOS/comments/1cwkyjf/name_one_thing_you_are_not_able_to_do_because_you/

view this post on Zulip IFTTT (May 21 2024 at 14:13):

Stylix: Declaratively apply color scheme, font, and wallpaper to desktops and apps

May 20, 2024 at 05:43PM

https://old.reddit.com/r/NixOS/comments/1cwv7vv/stylix_declaratively_apply_color_scheme_font_and/

view this post on Zulip IFTTT (May 22 2024 at 02:13):

What are your tools for monitoring your NixOS hosts?

May 19, 2024 at 04:01AM

https://old.reddit.com/r/NixOS/comments/1cvlpul/what_are_your_tools_for_monitoring_your_nixos/

view this post on Zulip IFTTT (May 22 2024 at 07:13):

[Question] Nvidia 555 Beta Released Today

May 21, 2024 at 07:58AM

https://old.reddit.com/r/NixOS/comments/1cx9wsy/question_nvidia_555_beta_released_today/

view this post on Zulip IFTTT (May 22 2024 at 17:13):

Why brought you to NixOS? More importantly, what keeps you with NixOS?

May 22, 2024 at 04:07AM

https://old.reddit.com/r/NixOS/comments/1cxxkvd/why_brought_you_to_nixos_more_importantly_what/

view this post on Zulip IFTTT (May 22 2024 at 22:13):

I'm frustrated with my NixOS install

May 22, 2024 at 08:17AM

https://old.reddit.com/r/NixOS/comments/1cy2r9r/im_frustrated_with_my_nixos_install/

view this post on Zulip IFTTT (May 23 2024 at 05:09):

r/NixOS deleted from the official Wiki

May 22, 2024 at 01:15PM

https://old.reddit.com/r/NixOS/comments/1cya4k4/rnixos_deleted_from_the_official_wiki/

view this post on Zulip IFTTT (May 23 2024 at 17:13):

Holy crap Wayland just worked

May 22, 2024 at 11:08PM

https://old.reddit.com/r/NixOS/comments/1cylvdb/holy_crap_wayland_just_worked/

view this post on Zulip IFTTT (May 25 2024 at 04:13):

New to NixOS: Should I Use Flakes for My Setup?

May 23, 2024 at 05:15AM

https://old.reddit.com/r/NixOS/comments/1cyrc50/new_to_nixos_should_i_use_flakes_for_my_setup/

view this post on Zulip IFTTT (May 25 2024 at 08:18):

Guide : Fix "Steam on Linux now requires the ability to create new user namespaces"

May 22, 2024 at 09:29AM

https://old.reddit.com/r/NixOS/comments/1cy4j26/guide_fix_steam_on_linux_now_requires_the_ability/

view this post on Zulip IFTTT (May 26 2024 at 11:13):

Can a Yubikey be used to access the secrets.yaml file in sops-nix?

May 25, 2024 at 06:44AM

https://old.reddit.com/r/NixOS/comments/1d0ccqe/can_a_yubikey_be_used_to_access_the_secretsyaml/

view this post on Zulip IFTTT (May 27 2024 at 05:13):

I have been contemplating the move to NixOS from Arch for a bit.

May 26, 2024 at 12:02PM

https://old.reddit.com/r/NixOS/comments/1d18ijf/i_have_been_contemplating_the_move_to_nixos_from/

view this post on Zulip IFTTT (May 27 2024 at 21:13):

Walking Through Why Precompiled Hello World Cannot Execute on NixOS

May 27, 2024 at 02:07AM

https://old.reddit.com/r/NixOS/comments/1d1nd9l/walking_through_why_precompiled_hello_world/

view this post on Zulip IFTTT (May 28 2024 at 15:18):

Potentially Declare Obsidian?

May 27, 2024 at 05:57PM

https://old.reddit.com/r/NixOS/comments/1d277fo/potentially_declare_obsidian/

view this post on Zulip IFTTT (May 28 2024 at 17:08):

i just noticed this. i think it was just 80,000 before - mind-blowing

May 28, 2024 at 08:37AM

https://old.reddit.com/r/NixOS/comments/1d2mfkt/i_just_noticed_this_i_think_it_was_just_80000/

view this post on Zulip IFTTT (May 29 2024 at 06:08):

Why NixOS won over Guix ?

May 28, 2024 at 12:33PM

https://old.reddit.com/r/NixOS/comments/1d2s6r1/why_nixos_won_over_guix/

view this post on Zulip IFTTT (May 29 2024 at 17:08):

Should I switch to NixOS from Ubuntu?

May 25, 2024 at 03:00PM

https://old.reddit.com/r/NixOS/comments/1d0momz/should_i_switch_to_nixos_from_ubuntu/

view this post on Zulip IFTTT (May 29 2024 at 21:09):

Impermanence and discovering what needs to be persistant

May 26, 2024 at 01:43PM

https://old.reddit.com/r/NixOS/comments/1d1apm0/impermanence_and_discovering_what_needs_to_be/

view this post on Zulip IFTTT (May 30 2024 at 06:13):

nixos-cli :: A unified NixOS tooling replacement for nixos-* utilities

May 29, 2024 at 06:53PM

https://old.reddit.com/r/NixOS/comments/1d3ssmo/nixoscli_a_unified_nixos_tooling_replacement_for/

view this post on Zulip IFTTT (May 30 2024 at 07:13):

gradle2nix V2: Call for testers

May 29, 2024 at 06:43PM

https://old.reddit.com/r/NixOS/comments/1d3slpg/gradle2nix_v2_call_for_testers/

view this post on Zulip IFTTT (May 30 2024 at 13:13):

My first genuine crash (frozen machine) in nixOS for as long as I can remember

May 29, 2024 at 12:34PM

https://old.reddit.com/r/NixOS/comments/1d3kqck/my_first_genuine_crash_frozen_machine_in_nixos/

view this post on Zulip IFTTT (May 31 2024 at 04:13):

"Nix is just JSON with functions"

May 30, 2024 at 03:50PM

https://old.reddit.com/r/NixOS/comments/1d4gobt/nix_is_just_json_with_functions/

view this post on Zulip IFTTT (May 31 2024 at 21:13):

NixOS 24.05 released!

May 31, 2024 at 12:35PM

https://old.reddit.com/r/NixOS/comments/1d544po/nixos_2405_released/

view this post on Zulip IFTTT (Jun 01 2024 at 22:08):

Should I start flaking?

May 31, 2024 at 05:02PM

https://old.reddit.com/r/NixOS/comments/1d5a015/should_i_start_flaking/

view this post on Zulip IFTTT (Jun 02 2024 at 19:13):

Upgrading To 24.05 Corrupted DNS For All Snapshots

June 01, 2024 at 04:20PM

https://old.reddit.com/r/NixOS/comments/1d5zo9c/upgrading_to_2405_corrupted_dns_for_all_snapshots/

view this post on Zulip IFTTT (Jun 02 2024 at 21:08):

nix: 2.18 -> 2.22, proposal/suggestion on switching the default nix implementation to lix.

May 30, 2024 at 09:26AM

https://old.reddit.com/r/NixOS/comments/1d483mk/nix_218_222_proposalsuggestion_on_switching_the/

view this post on Zulip IFTTT (Jun 04 2024 at 01:13):

My little adventure into NixOS

June 03, 2024 at 12:42PM

https://old.reddit.com/r/NixOS/comments/1d7dheg/my_little_adventure_into_nixos/

view this post on Zulip IFTTT (Jun 04 2024 at 20:09):

Nvidia thinks there are two monitors

June 03, 2024 at 09:00PM

https://old.reddit.com/r/NixOS/comments/1d7o4hb/nvidia_thinks_there_are_two_monitors/

view this post on Zulip IFTTT (Jun 04 2024 at 23:13):

Just switched from Windows. Amazingly smooth and lovely experience, everything just works. Love it!

June 04, 2024 at 02:43PM

https://old.reddit.com/r/NixOS/comments/1d8930h/just_switched_from_windows_amazingly_smooth_and/

view this post on Zulip IFTTT (Jun 05 2024 at 00:13):

should i keep these x11 codes or not?

June 04, 2024 at 01:42PM

https://old.reddit.com/r/NixOS/comments/1d87li4/should_i_keep_these_x11_codes_or_not/

view this post on Zulip IFTTT (Jun 06 2024 at 02:13):

Messages after booting!!!

June 04, 2024 at 10:17AM

https://old.reddit.com/r/NixOS/comments/1d82lj5/messages_after_booting/

view this post on Zulip IFTTT (Jun 06 2024 at 04:13):

Am I using NixOS correctly?

June 05, 2024 at 02:00PM

https://old.reddit.com/r/NixOS/comments/1d90qlc/am_i_using_nixos_correctly/

view this post on Zulip IFTTT (Jun 06 2024 at 17:09):

locked out of nixos installer

June 06, 2024 at 04:10AM

https://old.reddit.com/r/NixOS/comments/1d9fm5k/locked_out_of_nixos_installer/

view this post on Zulip IFTTT (Jun 06 2024 at 23:13):

Curious about how you manage packages.

June 05, 2024 at 10:07AM

https://old.reddit.com/r/NixOS/comments/1d8v43d/curious_about_how_you_manage_packages/

view this post on Zulip IFTTT (Jun 07 2024 at 01:13):

Mom come pick me up I'm scared

June 06, 2024 at 01:37PM

https://old.reddit.com/r/NixOS/comments/1d9sfmy/mom_come_pick_me_up_im_scared/

view this post on Zulip IFTTT (Jun 07 2024 at 04:08):

NixOS Meme

June 06, 2024 at 07:12PM

https://old.reddit.com/r/NixOS/comments/1d9zogg/nixos_meme/

view this post on Zulip IFTTT (Jun 07 2024 at 14:14):

For your consideration.

June 07, 2024 at 01:24AM

https://old.reddit.com/r/NixOS/comments/1da5o92/for_your_consideration/

view this post on Zulip IFTTT (Jun 08 2024 at 02:13):

SteamOS based on NixOS?

June 07, 2024 at 11:18AM

https://old.reddit.com/r/NixOS/comments/1dahr3g/steamos_based_on_nixos/

view this post on Zulip IFTTT (Jun 08 2024 at 04:13):

My NixOS rice

June 07, 2024 at 06:36PM

https://old.reddit.com/r/NixOS/comments/1darina/my_nixos_rice/

view this post on Zulip IFTTT (Jun 08 2024 at 07:13):

Do you think Nix language is confusing?

June 07, 2024 at 08:11PM

https://old.reddit.com/r/NixOS/comments/1dat919/do_you_think_nix_language_is_confusing/

view this post on Zulip IFTTT (Jun 09 2024 at 03:13):

Yubikey + gpg key + sops-nix

June 08, 2024 at 12:23PM

https://old.reddit.com/r/NixOS/comments/1dbalru/yubikey_gpg_key_sopsnix/

view this post on Zulip IFTTT (Jun 09 2024 at 06:18):

Thank the lord for NixOS

June 08, 2024 at 03:42PM

https://old.reddit.com/r/NixOS/comments/1dbev5o/thank_the_lord_for_nixos/

view this post on Zulip IFTTT (Jun 09 2024 at 19:13):

NixOS and Hyprland, perfect match!

June 09, 2024 at 09:29AM

https://old.reddit.com/r/NixOS/comments/1dbxrsv/nixos_and_hyprland_perfect_match/

view this post on Zulip IFTTT (Jun 10 2024 at 06:18):

NixOS and i3wm, perfect match!

June 09, 2024 at 01:56PM

https://old.reddit.com/r/NixOS/comments/1dc4190/nixos_and_i3wm_perfect_match/

view this post on Zulip IFTTT (Jun 10 2024 at 07:13):

It's been a helluva ride. When I first moved over from Linux Mint, I'd say I had about 70% of everything working. But a lot of stuff that worked right out the box over there, I had to learn to do on my own over here. I finally have everything working 100% like I did on LM. I Love NixOS

June 09, 2024 at 12:45PM

https://old.reddit.com/r/NixOS/comments/1dc2c2b/its_been_a_helluva_ride_when_i_first_moved_over/

view this post on Zulip IFTTT (Jun 13 2024 at 09:13):

I have an issue with NixOS

June 12, 2024 at 02:05PM

https://old.reddit.com/r/NixOS/comments/1dehjla/i_have_an_issue_with_nixos/

view this post on Zulip IFTTT (Jun 13 2024 at 12:08):

nix people

June 13, 2024 at 02:58AM

https://old.reddit.com/r/NixOS/comments/1deva8d/nix_people/

view this post on Zulip IFTTT (Jun 14 2024 at 03:13):

[ Hyprland + NixOS ] Clean and simple

June 09, 2024 at 10:03AM

https://old.reddit.com/r/NixOS/comments/1dbyjx7/hyprland_nixos_clean_and_simple/

view this post on Zulip IFTTT (Jun 14 2024 at 08:08):

Could we convince Hetzner to add Nixos as a standard image choice

June 12, 2024 at 11:31PM

https://old.reddit.com/r/NixOS/comments/1desdbv/could_we_convince_hetzner_to_add_nixos_as_a/

view this post on Zulip IFTTT (Jun 15 2024 at 04:13):

Aside from the declarative nature of nixOS what benefits does it offer?

June 13, 2024 at 05:14PM

https://old.reddit.com/r/NixOS/comments/1dfdste/aside_from_the_declarative_nature_of_nixos_what/

view this post on Zulip IFTTT (Jun 15 2024 at 13:13):

NixOS in 2100

June 15, 2024 at 01:22AM

https://old.reddit.com/r/NixOS/comments/1dgdada/nixos_in_2100/

view this post on Zulip IFTTT (Jun 15 2024 at 23:08):

NixOS Beginner

June 09, 2024 at 06:46PM

https://old.reddit.com/r/NixOS/comments/1dca4se/nixos_beginner/

view this post on Zulip IFTTT (Jun 16 2024 at 16:13):

Please upvote the top comment to get Nixos as standard image on Hetzner!

June 16, 2024 at 05:17AM

https://old.reddit.com/r/NixOS/comments/1dh6ci9/please_upvote_the_top_comment_to_get_nixos_as/

view this post on Zulip IFTTT (Jun 16 2024 at 17:08):

Password for the user nixos in the NixOS ISO

June 11, 2024 at 08:58AM

https://old.reddit.com/r/NixOS/comments/1ddhngn/password_for_the_user_nixos_in_the_nixos_iso/

view this post on Zulip IFTTT (Jun 16 2024 at 20:13):

A Flake for Nook Desktop! (Animal Crossing BGM/Rain App)

June 10, 2024 at 09:12PM

https://old.reddit.com/r/NixOS/comments/1dd5c3s/a_flake_for_nook_desktop_animal_crossing_bgmrain/

view this post on Zulip IFTTT (Jun 16 2024 at 21:13):

I'm just about done with NixOS. How do I get a simple python data science environment up and running?

June 13, 2024 at 05:10AM

https://old.reddit.com/r/NixOS/comments/1dexghb/im_just_about_done_with_nixos_how_do_i_get_a/

view this post on Zulip IFTTT (Jun 16 2024 at 22:09):

Nixvim is done now i can proccede to NixOs Config....

June 16, 2024 at 06:21AM

https://old.reddit.com/r/NixOS/comments/1dh7hd3/nixvim_is_done_now_i_can_proccede_to_nixos_config/

view this post on Zulip IFTTT (Jun 16 2024 at 23:13):

My first try.. on Qemu but I like it so far!

June 16, 2024 at 10:24AM

https://old.reddit.com/r/NixOS/comments/1dhcisu/my_first_try_on_qemu_but_i_like_it_so_far/

view this post on Zulip IFTTT (Jun 17 2024 at 19:13):

How to use Neovim without nixvim

June 17, 2024 at 01:54AM

https://old.reddit.com/r/NixOS/comments/1dhtj1t/how_to_use_neovim_without_nixvim/

view this post on Zulip IFTTT (Jun 17 2024 at 19:13):

The official NixOS YouTube channel is Live..

June 17, 2024 at 07:52AM

https://old.reddit.com/r/NixOS/comments/1di002u/the_official_nixos_youtube_channel_is_live/

view this post on Zulip IFTTT (Jun 18 2024 at 04:13):

What is the future of NixOS?

June 17, 2024 at 02:17PM

https://old.reddit.com/r/NixOS/comments/1di99pf/what_is_the_future_of_nixos/

view this post on Zulip IFTTT (Jun 18 2024 at 07:13):

a true story

June 17, 2024 at 08:26PM

https://old.reddit.com/r/NixOS/comments/1dih01j/a_true_story/

view this post on Zulip IFTTT (Jun 19 2024 at 14:13):

NixOS ISO on Hetzner as default (please vote for it here!)

June 19, 2024 at 01:52AM

https://old.reddit.com/r/NixOS/comments/1djeh0v/nixos_iso_on_hetzner_as_default_please_vote_for/

view this post on Zulip IFTTT (Jun 20 2024 at 03:13):

What is this, Gentoo?

June 19, 2024 at 11:28AM

https://old.reddit.com/r/NixOS/comments/1djqa3p/what_is_this_gentoo/

view this post on Zulip IFTTT (Jun 21 2024 at 17:13):

List of open source games and their status on nixos

June 21, 2024 at 07:47AM

https://old.reddit.com/r/NixOS/comments/1dl5rxe/list_of_open_source_games_and_their_status_on/

view this post on Zulip IFTTT (Jun 22 2024 at 09:13):

Constitutional Assembly Statement on Jon Ringer

June 21, 2024 at 10:22PM

https://old.reddit.com/r/NixOS/comments/1dloahg/constitutional_assembly_statement_on_jon_ringer/

view this post on Zulip IFTTT (Jun 23 2024 at 12:13):

What exactly are Flakes?

June 22, 2024 at 07:03PM

https://old.reddit.com/r/NixOS/comments/1dmbimf/what_exactly_are_flakes/

view this post on Zulip IFTTT (Jun 23 2024 at 14:13):

Best Nix LSP for Neovim

June 20, 2024 at 04:59PM

https://old.reddit.com/r/NixOS/comments/1dkqcqc/best_nix_lsp_for_neovim/

view this post on Zulip IFTTT (Jun 23 2024 at 18:13):

Is making Nix my first distro/daily driver a terrible idea?

June 21, 2024 at 11:57AM

https://old.reddit.com/r/NixOS/comments/1dlboqx/is_making_nix_my_first_distrodaily_driver_a/

view this post on Zulip IFTTT (Jun 23 2024 at 20:13):

Leaving NixOS for Arch.

June 23, 2024 at 08:33AM

https://old.reddit.com/r/NixOS/comments/1dmot2m/leaving_nixos_for_arch/

view this post on Zulip IFTTT (Jun 24 2024 at 09:08):

Nvim managed 100% by nvim

June 19, 2024 at 02:23PM

https://old.reddit.com/r/NixOS/comments/1djuh62/nvim_managed_100_by_nvim/

view this post on Zulip IFTTT (Jun 24 2024 at 15:13):

GitHub - redcode-labs/RedNixOS: NixOS-based 'distro' for cybersecurity enthusiasts

June 17, 2024 at 10:26PM

https://old.reddit.com/r/NixOS/comments/1dij1pa/github_redcodelabsrednixos_nixosbased_distro_for/

view this post on Zulip IFTTT (Jun 24 2024 at 22:13):

The Proxmox Hypervisor, on NixOS

June 24, 2024 at 12:55PM

https://old.reddit.com/r/NixOS/comments/1dnmqb2/the_proxmox_hypervisor_on_nixos/

view this post on Zulip IFTTT (Jun 25 2024 at 06:13):

46%

June 24, 2024 at 10:37AM

https://old.reddit.com/r/NixOS/comments/1dnje2z/46/

view this post on Zulip IFTTT (Jun 26 2024 at 09:13):

Catppuccin GTK

June 22, 2024 at 01:04AM

https://old.reddit.com/r/NixOS/comments/1dlqoem/catppuccin_gtk/

view this post on Zulip IFTTT (Jun 26 2024 at 19:13):

Someone please explain home.nix flakes.nix combo to me like I am 5

June 23, 2024 at 02:25PM

https://old.reddit.com/r/NixOS/comments/1dmwpej/someone_please_explain_homenix_flakesnix_combo_to/

view this post on Zulip IFTTT (Jun 26 2024 at 22:13):

Will i have problems with university projects using NixOS

June 24, 2024 at 02:05AM

https://old.reddit.com/r/NixOS/comments/1dn92v3/will_i_have_problems_with_university_projects/

view this post on Zulip IFTTT (Jun 27 2024 at 00:18):

title

June 26, 2024 at 03:51PM

https://old.reddit.com/r/NixOS/comments/1dpc0ea/title/

view this post on Zulip IFTTT (Jun 27 2024 at 07:13):

NixOS makes me feel powerful!

June 26, 2024 at 08:14PM

https://old.reddit.com/r/NixOS/comments/1dphcnj/nixos_makes_me_feel_powerful/

view this post on Zulip IFTTT (Jun 27 2024 at 10:13):

Holy moly

June 27, 2024 at 02:08AM

https://old.reddit.com/r/NixOS/comments/1dpmuh7/holy_moly/

view this post on Zulip IFTTT (Jun 27 2024 at 23:13):

Adding parallel evaluation to Nix, by Eelco Dolstra

June 27, 2024 at 08:45AM

https://old.reddit.com/r/NixOS/comments/1dpugf4/adding_parallel_evaluation_to_nix_by_eelco_dolstra/

view this post on Zulip IFTTT (Jun 28 2024 at 10:13):

Where are my SDKs are stored in NixOS?

June 27, 2024 at 06:59PM

https://old.reddit.com/r/NixOS/comments/1dq8c2j/where_are_my_sdks_are_stored_in_nixos/

view this post on Zulip IFTTT (Jun 28 2024 at 18:13):

4 out of 5 NixOS board members have quit

June 28, 2024 at 09:06AM

https://old.reddit.com/r/NixOS/comments/1dqn9os/4_out_of_5_nixos_board_members_have_quit/

view this post on Zulip IFTTT (Jun 29 2024 at 07:13):

Do we know who (person or people) is causing NixOS founding board members to leave?

June 28, 2024 at 04:33PM

https://old.reddit.com/r/NixOS/comments/1dqxhvk/do_we_know_who_person_or_people_is_causing_nixos/

view this post on Zulip IFTTT (Jun 30 2024 at 00:13):

aight

June 29, 2024 at 03:02PM

https://old.reddit.com/r/NixOS/comments/1drm8lx/aight/

view this post on Zulip IFTTT (Jun 30 2024 at 14:13):

Python is a NIGHTMARE on nixOS

June 29, 2024 at 02:01PM

https://old.reddit.com/r/NixOS/comments/1drkymj/python_is_a_nightmare_on_nixos/

view this post on Zulip IFTTT (Jul 01 2024 at 11:13):

My daily routine

July 01, 2024 at 02:28AM

https://old.reddit.com/r/NixOS/comments/1dsos3x/my_daily_routine/

view this post on Zulip IFTTT (Jul 01 2024 at 18:13):

Moving forward together

July 01, 2024 at 09:21AM

https://old.reddit.com/r/NixOS/comments/1dsx4du/moving_forward_together/

view this post on Zulip IFTTT (Jul 02 2024 at 20:09):

What on earth did jonringer even do?

July 02, 2024 at 07:54AM

https://old.reddit.com/r/NixOS/comments/1dtnsk5/what_on_earth_did_jonringer_even_do/

view this post on Zulip IFTTT (Jul 04 2024 at 04:13):

Security advisory: OpenSSH CVE-2024-6387 β€œregreSSHion” – update your servers ASAP - Security

July 02, 2024 at 04:26AM

https://old.reddit.com/r/NixOS/comments/1dtjhtp/security_advisory_openssh_cve20246387_regresshion/

view this post on Zulip IFTTT (Jul 04 2024 at 10:13):

Modern resources to learn Nix and NixOS?

June 30, 2024 at 01:01PM

https://old.reddit.com/r/NixOS/comments/1dsa4wz/modern_resources_to_learn_nix_and_nixos/

view this post on Zulip IFTTT (Jul 04 2024 at 12:13):

Maintainers exodus over recent events

July 02, 2024 at 09:50AM

https://old.reddit.com/r/NixOS/comments/1dtqlga/maintainers_exodus_over_recent_events/

view this post on Zulip IFTTT (Jul 05 2024 at 02:13):

Hyprland this, hyprland that!

July 02, 2024 at 03:20AM

https://old.reddit.com/r/NixOS/comments/1dtif2m/hyprland_this_hyprland_that/

view this post on Zulip IFTTT (Jul 05 2024 at 11:13):

Run local AI chatbot using Nix

July 03, 2024 at 10:22AM

https://old.reddit.com/r/NixOS/comments/1dujxu4/run_local_ai_chatbot_using_nix/

view this post on Zulip IFTTT (Jul 05 2024 at 16:13):

Automatic unattended installer thingy

July 05, 2024 at 12:50AM

https://old.reddit.com/r/NixOS/comments/1dvsk9o/automatic_unattended_installer_thingy/

view this post on Zulip IFTTT (Jul 06 2024 at 21:18):

Is NixOS good for putting it on family member's machines?

July 04, 2024 at 06:25AM

https://old.reddit.com/r/NixOS/comments/1dv6vil/is_nixos_good_for_putting_it_on_family_members/

view this post on Zulip IFTTT (Jul 06 2024 at 23:13):

Learn Nix the Fun Way

July 06, 2024 at 02:28PM

https://old.reddit.com/r/NixOS/comments/1dx04a0/learn_nix_the_fun_way/

view this post on Zulip IFTTT (Jul 07 2024 at 09:13):

search.nixos.org now gives you the nixpkgs commit!

July 06, 2024 at 11:01PM

https://old.reddit.com/r/NixOS/comments/1dx9llm/searchnixosorg_now_gives_you_the_nixpkgs_commit/

view this post on Zulip IFTTT (Jul 07 2024 at 16:13):

DuckDuckGo is amazing

July 07, 2024 at 01:46AM

https://old.reddit.com/r/NixOS/comments/1dxbzcm/duckduckgo_is_amazing/

view this post on Zulip IFTTT (Jul 08 2024 at 20:13):

[Hyprland] NixOS - Catppuccin + Ags + Emacs setup - ZZZ inspiration (Zenless Zone Zero) - optional light mode - my main beast: Ryzen 9 7900X3D + Radeon RX 6800 XT

July 08, 2024 at 04:35AM

https://old.reddit.com/r/NixOS/comments/1dy6ndt/hyprland_nixos_catppuccin_ags_emacs_setup_zzz/

view this post on Zulip IFTTT (Jul 09 2024 at 11:13):

Things to know before switching to NixOs

July 08, 2024 at 09:45AM

https://old.reddit.com/r/NixOS/comments/1dydm3p/things_to_know_before_switching_to_nixos/

view this post on Zulip IFTTT (Jul 09 2024 at 14:18):

System freezes after shutting down

July 08, 2024 at 03:25PM

https://old.reddit.com/r/NixOS/comments/1dym2y1/system_freezes_after_shutting_down/

view this post on Zulip IFTTT (Jul 09 2024 at 17:09):

Im once again asking for your help

July 07, 2024 at 09:10AM

https://old.reddit.com/r/NixOS/comments/1dxk3b8/im_once_again_asking_for_your_help/

view this post on Zulip IFTTT (Jul 10 2024 at 00:13):

Evict Your Darlings: Banish dotfiles from your home directory

July 09, 2024 at 01:12PM

https://old.reddit.com/r/NixOS/comments/1dzc92k/evict_your_darlings_banish_dotfiles_from_your/

view this post on Zulip IFTTT (Jul 10 2024 at 17:18):

At the Mountains of Madness

July 10, 2024 at 07:33AM

https://old.reddit.com/r/NixOS/comments/1dzx9ro/at_the_mountains_of_madness/

view this post on Zulip IFTTT (Jul 11 2024 at 03:13):

Growth in nixpkgs maintainers (Jul 2020 to present)

July 10, 2024 at 06:14PM

https://old.reddit.com/r/NixOS/comments/1e0clk6/growth_in_nixpkgs_maintainers_jul_2020_to_present/

view this post on Zulip IFTTT (Jul 11 2024 at 19:13):

Lix 2.90 "Vanilla Ice Cream"

July 10, 2024 at 11:23PM

https://old.reddit.com/r/NixOS/comments/1e0i3y8/lix_290_vanilla_ice_cream/

view this post on Zulip IFTTT (Jul 13 2024 at 04:18):

Nix secrets for dummies

July 12, 2024 at 11:21AM

https://old.reddit.com/r/NixOS/comments/1e1ooqo/nix_secrets_for_dummies/

view this post on Zulip IFTTT (Jul 14 2024 at 00:13):

NixOS = Modules + Flakes + ... ???

July 13, 2024 at 05:29AM

https://old.reddit.com/r/NixOS/comments/1e299op/nixos_modules_flakes/

view this post on Zulip IFTTT (Jul 14 2024 at 17:13):

Configure Radarr,Sonarr, ... with NixOS

July 10, 2024 at 07:21AM

https://old.reddit.com/r/NixOS/comments/1dzx0b1/configure_radarrsonarr_with_nixos/

view this post on Zulip IFTTT (Jul 14 2024 at 19:13):

My ergonomic workspace

July 14, 2024 at 10:15AM

https://old.reddit.com/r/NixOS/comments/1e37lbs/my_ergonomic_workspace/

view this post on Zulip IFTTT (Jul 15 2024 at 12:13):

Trying to advocate for nix-direnv and Nix shells at work: do people need to install Nix system-wide?

July 13, 2024 at 01:02PM

https://old.reddit.com/r/NixOS/comments/1e2jds5/trying_to_advocate_for_nixdirenv_and_nix_shells/

view this post on Zulip IFTTT (Jul 15 2024 at 21:14):

how deep did you go?

July 15, 2024 at 01:05PM

https://old.reddit.com/r/NixOS/comments/1e44p0p/how_deep_did_you_go/

view this post on Zulip IFTTT (Jul 15 2024 at 23:13):

Best Repos for Inspiration?

July 14, 2024 at 01:36PM

https://old.reddit.com/r/NixOS/comments/1e3c4nr/best_repos_for_inspiration/

view this post on Zulip IFTTT (Jul 17 2024 at 12:13):

[Announcement] Polytest: For running tests on heterogeneous VMs

July 16, 2024 at 06:41PM

https://old.reddit.com/r/NixOS/comments/1e561vi/announcement_polytest_for_running_tests_on/

view this post on Zulip IFTTT (Jul 17 2024 at 15:09):

Automated NixOS Installers for bulk deployments?

July 11, 2024 at 05:59PM

https://old.reddit.com/r/NixOS/comments/1e14qpa/automated_nixos_installers_for_bulk_deployments/

view this post on Zulip IFTTT (Jul 18 2024 at 02:13):

Using Mason / Lazy in NixOS

July 13, 2024 at 06:01AM

https://old.reddit.com/r/NixOS/comments/1e29wld/using_mason_lazy_in_nixos/

view this post on Zulip IFTTT (Jul 18 2024 at 03:18):

NixOS is so beautiful and amazing.

July 17, 2024 at 05:45PM

https://old.reddit.com/r/NixOS/comments/1e5yemh/nixos_is_so_beautiful_and_amazing/

view this post on Zulip IFTTT (Jul 18 2024 at 09:13):

I noticed there weren't any console dice rollers in nixpkgs, so I made one

July 17, 2024 at 03:03PM

https://old.reddit.com/r/NixOS/comments/1e5urpr/i_noticed_there_werent_any_console_dice_rollers/

view this post on Zulip IFTTT (Jul 18 2024 at 17:14):

Which do you prefer in your Nix code?

July 17, 2024 at 05:12PM

https://old.reddit.com/r/NixOS/comments/1e5xq0t/which_do_you_prefer_in_your_nix_code/

view this post on Zulip IFTTT (Jul 19 2024 at 10:13):

I love nix but holy shit

July 18, 2024 at 09:19AM

https://old.reddit.com/r/NixOS/comments/1e6fd7h/i_love_nix_but_holy_shit/

view this post on Zulip IFTTT (Jul 19 2024 at 21:13):

NixOS vs Arch Linux

July 19, 2024 at 08:39AM

https://old.reddit.com/r/NixOS/comments/1e76r2j/nixos_vs_arch_linux/

view this post on Zulip IFTTT (Jul 20 2024 at 03:18):

Nix.Camp 2023 Blog Post

July 19, 2024 at 07:06AM

https://old.reddit.com/r/NixOS/comments/1e74loi/nixcamp_2023_blog_post/

view this post on Zulip IFTTT (Jul 20 2024 at 20:18):

Why is cron "depreciated"?

July 19, 2024 at 01:04AM

https://old.reddit.com/r/NixOS/comments/1e6yg2w/why_is_cron_depreciated/

view this post on Zulip IFTTT (Jul 20 2024 at 22:13):

new wallpaper just dropped

July 20, 2024 at 12:33PM

https://old.reddit.com/r/NixOS/comments/1e83myg/new_wallpaper_just_dropped/

view this post on Zulip IFTTT (Jul 21 2024 at 02:13):

An Argument against the use of watchdog chatbot in this subreddit

July 20, 2024 at 04:06PM

https://old.reddit.com/r/NixOS/comments/1e885up/an_argument_against_the_use_of_watchdog_chatbot/

view this post on Zulip IFTTT (Jul 22 2024 at 11:13):

How do you guys organize your .nix config files? I have a few of them spread out

July 21, 2024 at 09:16PM

https://old.reddit.com/r/NixOS/comments/1e95b69/how_do_you_guys_organize_your_nix_config_files_i/

view this post on Zulip IFTTT (Jul 23 2024 at 05:09):

How did I miss NixOS?

July 22, 2024 at 06:43PM

https://old.reddit.com/r/NixOS/comments/1e9vqz5/how_did_i_miss_nixos/

view this post on Zulip IFTTT (Jul 24 2024 at 11:13):

Full Time Nix | Domen KoΕΎar

July 23, 2024 at 08:16AM

https://old.reddit.com/r/NixOS/comments/1eaae70/full_time_nix_domen_koΕΎar/

view this post on Zulip IFTTT (Jul 24 2024 at 17:13):

It takes 68 steps to deploy Odoo with NixOS

July 24, 2024 at 03:10AM

https://old.reddit.com/r/NixOS/comments/1eaxsa7/it_takes_68_steps_to_deploy_odoo_with_nixos/

view this post on Zulip IFTTT (Jul 24 2024 at 22:09):

i want to try nixos

July 23, 2024 at 04:05PM

https://old.reddit.com/r/NixOS/comments/1ealygz/i_want_to_try_nixos/

view this post on Zulip IFTTT (Jul 25 2024 at 09:13):

Nixos-tidy - A module to clean this mess!

July 24, 2024 at 10:00AM

https://old.reddit.com/r/NixOS/comments/1eb6k8n/nixostidy_a_module_to_clean_this_mess/

view this post on Zulip IFTTT (Jul 25 2024 at 16:09):

Don’t use NixOS

July 24, 2024 at 10:10AM

https://old.reddit.com/r/NixOS/comments/1eb6tcf/dont_use_nixos/

view this post on Zulip IFTTT (Jul 25 2024 at 22:09):

Arch is a gateway drug to NixOS

July 25, 2024 at 10:48AM

https://old.reddit.com/r/NixOS/comments/1ec15tp/arch_is_a_gateway_drug_to_nixos/

view this post on Zulip IFTTT (Jul 26 2024 at 07:13):

Specialisations are pretty dope!

July 25, 2024 at 04:57PM

https://old.reddit.com/r/NixOS/comments/1ec9xwm/specialisations_are_pretty_dope/

view this post on Zulip IFTTT (Jul 26 2024 at 20:13):

Is NixOS the best OS for servers?

July 26, 2024 at 08:11AM

https://old.reddit.com/r/NixOS/comments/1ecqiq7/is_nixos_the_best_os_for_servers/

view this post on Zulip IFTTT (Jul 27 2024 at 13:13):

The NixOS Conflict in Under 5 Minutes

July 26, 2024 at 07:13PM

https://old.reddit.com/r/NixOS/comments/1ed5gbc/the_nixos_conflict_in_under_5_minutes/

view this post on Zulip IFTTT (Jul 29 2024 at 05:13):

NixCon 2024 Berlin Oct 25-27

July 28, 2024 at 07:07AM

https://old.reddit.com/r/NixOS/comments/1ee88kz/nixcon_2024_berlin_oct_2527/

view this post on Zulip IFTTT (Jul 29 2024 at 19:18):

A modular distro on top of nixos.

July 28, 2024 at 05:06PM

https://old.reddit.com/r/NixOS/comments/1eelq7h/a_modular_distro_on_top_of_nixos/

view this post on Zulip IFTTT (Jul 29 2024 at 21:09):

Nix Survey 2024

July 29, 2024 at 09:20AM

https://old.reddit.com/r/NixOS/comments/1ef3pgq/nix_survey_2024/

view this post on Zulip IFTTT (Jul 30 2024 at 19:13):

Dev workstation: yes or no

July 29, 2024 at 08:00AM

https://old.reddit.com/r/NixOS/comments/1ef1pd3/dev_workstation_yes_or_no/

view this post on Zulip IFTTT (Jul 31 2024 at 05:13):

What do flakes actually allow you to do?

July 29, 2024 at 05:26PM

https://old.reddit.com/r/NixOS/comments/1effly1/what_do_flakes_actually_allow_you_to_do/

view this post on Zulip IFTTT (Jul 31 2024 at 17:13):

What do these numbers mean while rebuilding a flake?

July 29, 2024 at 04:48AM

https://old.reddit.com/r/NixOS/comments/1eexhh0/what_do_these_numbers_mean_while_rebuilding_a/

view this post on Zulip IFTTT (Jul 31 2024 at 23:13):

NisOS-WSL is awesome

July 31, 2024 at 11:28AM

https://old.reddit.com/r/NixOS/comments/1eguj7b/nisoswsl_is_awesome/

view this post on Zulip IFTTT (Aug 02 2024 at 00:13):

Import but don’t import your NixOS modules

July 29, 2024 at 08:17PM

https://old.reddit.com/r/NixOS/comments/1efj5ls/import_but_dont_import_your_nixos_modules/

view this post on Zulip IFTTT (Aug 02 2024 at 07:18):

Homelab focused Nix community

August 01, 2024 at 04:01PM

https://old.reddit.com/r/NixOS/comments/1ehuiwa/homelab_focused_nix_community/

view this post on Zulip IFTTT (Aug 02 2024 at 11:13):

nixd has gotten fantastic

August 01, 2024 at 09:37PM

https://old.reddit.com/r/NixOS/comments/1ei1ank/nixd_has_gotten_fantastic/

view this post on Zulip IFTTT (Aug 02 2024 at 20:13):

nix btw

August 02, 2024 at 11:14AM

https://old.reddit.com/r/NixOS/comments/1eih2rm/nix_btw/

view this post on Zulip IFTTT (Aug 03 2024 at 17:13):

New one every week

August 03, 2024 at 07:57AM

https://old.reddit.com/r/NixOS/comments/1ej5ao5/new_one_every_week/

view this post on Zulip IFTTT (Aug 03 2024 at 21:18):

Steam-run is magic, I swear

August 03, 2024 at 10:16AM

https://old.reddit.com/r/NixOS/comments/1ej8n4x/steamrun_is_magic_i_swear/

view this post on Zulip IFTTT (Aug 04 2024 at 10:13):

Flakes dev experience

August 04, 2024 at 01:44AM

https://old.reddit.com/r/NixOS/comments/1ejqodn/flakes_dev_experience/

view this post on Zulip IFTTT (Aug 05 2024 at 07:13):

NixOS from Arch User, the ULTIMATE RABBIT HOLE

August 04, 2024 at 06:50PM

https://old.reddit.com/r/NixOS/comments/1ekbzsj/nixos_from_arch_user_the_ultimate_rabbit_hole/

view this post on Zulip IFTTT (Aug 05 2024 at 17:13):

Frustrations with NixOS: Community Support and Package Quality Issues

August 03, 2024 at 10:09AM

https://old.reddit.com/r/NixOS/comments/1ej8gwn/frustrations_with_nixos_community_support_and/

view this post on Zulip IFTTT (Aug 06 2024 at 04:13):

Just got started with nix, made minimal changes to my configuration.nix file (added like 2 or 3 packages) and tried to rebuild, got this... I made no change to any of the files mentioned

July 30, 2024 at 05:57PM

https://old.reddit.com/r/NixOS/comments/1ega433/just_got_started_with_nix_made_minimal_changes_to/

view this post on Zulip IFTTT (Aug 06 2024 at 10:13):

Amount of packages on fresh install

August 05, 2024 at 09:07PM

https://old.reddit.com/r/NixOS/comments/1el8d1b/amount_of_packages_on_fresh_install/

view this post on Zulip IFTTT (Aug 07 2024 at 14:13):

I made a Nix flake to automate AMD microcode updates

August 06, 2024 at 09:45AM

https://old.reddit.com/r/NixOS/comments/1elmo7k/i_made_a_nix_flake_to_automate_amd_microcode/

view this post on Zulip IFTTT (Aug 07 2024 at 21:48):

Everyone is talking about flakes

August 07, 2024 at 12:21AM

https://old.reddit.com/r/NixOS/comments/1em5jxz/everyone_is_talking_about_flakes/

view this post on Zulip IFTTT (Aug 08 2024 at 05:18):

NixOS is awesome (and a little guide on using amd-pstate on NixOS)

August 07, 2024 at 11:58AM

https://old.reddit.com/r/NixOS/comments/1emk6sr/nixos_is_awesome_and_a_little_guide_on_using/

view this post on Zulip IFTTT (Aug 08 2024 at 23:13):

nix site design improvement attempt/idea. What do you think?

August 08, 2024 at 10:26AM

https://old.reddit.com/r/NixOS/comments/1enbwgm/nix_site_design_improvement_attemptidea_what_do/

view this post on Zulip IFTTT (Aug 09 2024 at 16:13):

NixPackages Search

August 08, 2024 at 10:58PM

https://old.reddit.com/r/NixOS/comments/1ens8zm/nixpackages_search/

view this post on Zulip IFTTT (Aug 09 2024 at 21:13):

If Arch were to have as bad doc/wiki as NixOS, it would have been way worse compared to NixOS.

August 09, 2024 at 09:15AM

https://old.reddit.com/r/NixOS/comments/1eo3vbw/if_arch_were_to_have_as_bad_docwiki_as_nixos_it/

view this post on Zulip IFTTT (Aug 10 2024 at 14:13):

Principal Skinner on Immutable Distros

August 10, 2024 at 12:47AM

https://old.reddit.com/r/NixOS/comments/1eonj1e/principal_skinner_on_immutable_distros/

view this post on Zulip IFTTT (Aug 10 2024 at 18:18):

Challenged myself to use the same distro for the next year. NixOS was my choice.

August 08, 2024 at 11:53PM

https://old.reddit.com/r/NixOS/comments/1ent3us/challenged_myself_to_use_the_same_distro_for_the/

view this post on Zulip IFTTT (Aug 10 2024 at 20:18):

It's been a while since I've done nix collect garbage...

August 10, 2024 at 10:28AM

https://old.reddit.com/r/NixOS/comments/1eoyisn/its_been_a_while_since_ive_done_nix_collect/

view this post on Zulip IFTTT (Aug 11 2024 at 20:18):

Tvix Status - August '24

August 11, 2024 at 01:19AM

https://old.reddit.com/r/NixOS/comments/1epfski/tvix_status_august_24/

view this post on Zulip IFTTT (Aug 12 2024 at 08:13):

Is it only me, or nixOS infrastructure that bad?

August 11, 2024 at 02:19PM

https://old.reddit.com/r/NixOS/comments/1epvsp8/is_it_only_me_or_nixos_infrastructure_that_bad/

view this post on Zulip IFTTT (Aug 13 2024 at 05:13):

Note to self: Do NOT collect garbage and optimise the nix store at the same time

August 08, 2024 at 03:15PM

https://old.reddit.com/r/NixOS/comments/1enj0ab/note_to_self_do_not_collect_garbage_and_optimise/

view this post on Zulip IFTTT (Aug 13 2024 at 17:13):

Disk space

August 11, 2024 at 04:58AM

https://old.reddit.com/r/NixOS/comments/1epj390/disk_space/

view this post on Zulip IFTTT (Aug 14 2024 at 08:18):

What can be done about nixpkgs package quality?

August 09, 2024 at 07:31PM

https://old.reddit.com/r/NixOS/comments/1eoi509/what_can_be_done_about_nixpkgs_package_quality/

view this post on Zulip IFTTT (Aug 14 2024 at 09:13):

Lix got me with those juicy multiline logs :hushed:

August 13, 2024 at 11:09PM

https://old.reddit.com/r/NixOS/comments/1eru9kv/lix_got_me_with_those_juicy_multiline_logs/

view this post on Zulip IFTTT (Aug 15 2024 at 07:13):

NixOS will fail to rebuild right now, github is down.

August 14, 2024 at 04:38PM

https://old.reddit.com/r/NixOS/comments/1esgav3/nixos_will_fail_to_rebuild_right_now_github_is/

view this post on Zulip IFTTT (Aug 15 2024 at 15:08):

A Nod to NixOS

August 14, 2024 at 10:08AM

https://old.reddit.com/r/NixOS/comments/1es73qx/a_nod_to_nixos/

view this post on Zulip IFTTT (Aug 16 2024 at 05:18):

Finally

August 15, 2024 at 02:04PM

https://old.reddit.com/r/NixOS/comments/1et6gpp/finally/

view this post on Zulip IFTTT (Aug 16 2024 at 06:13):

NixOS, Raspberry Pi & Me

August 13, 2024 at 10:17PM

https://old.reddit.com/r/NixOS/comments/1ertfbs/nixos_raspberry_pi_me/

view this post on Zulip IFTTT (Aug 17 2024 at 03:08):

The COSMIC desktop Flake finally convinced me to learn Flakes.

August 16, 2024 at 04:58PM

https://old.reddit.com/r/NixOS/comments/1eu3xeg/the_cosmic_desktop_flake_finally_convinced_me_to/

view this post on Zulip IFTTT (Aug 17 2024 at 18:13):

Lix working on a NixOS/nixpkgs fork?

August 14, 2024 at 05:25PM

https://old.reddit.com/r/NixOS/comments/1eshclo/lix_working_on_a_nixosnixpkgs_fork/

view this post on Zulip IFTTT (Aug 18 2024 at 09:13):

Why does Home Manager have more package options than "normal" packages?

August 16, 2024 at 08:26AM

https://old.reddit.com/r/NixOS/comments/1etrpxu/why_does_home_manager_have_more_package_options/

view this post on Zulip IFTTT (Aug 18 2024 at 12:13):

How difficult is it in terms of effort to build and maintain nix packages as compared to Arch packages?

August 14, 2024 at 09:25PM

https://old.reddit.com/r/NixOS/comments/1esm7y2/how_difficult_is_it_in_terms_of_effort_to_build/

view this post on Zulip IFTTT (Aug 18 2024 at 13:18):

nixos-cli :: a new way of fast option discovery

August 18, 2024 at 04:29AM

https://old.reddit.com/r/NixOS/comments/1ev71qd/nixoscli_a_new_way_of_fast_option_discovery/

view this post on Zulip IFTTT (Aug 19 2024 at 20:13):

I installed NixOS and it only took me 9 attempts

August 19, 2024 at 06:53AM

https://old.reddit.com/r/NixOS/comments/1ew2e6y/i_installed_nixos_and_it_only_took_me_9_attempts/

view this post on Zulip IFTTT (Aug 21 2024 at 07:13):

Thoughts on SnowflakeOS and its Software Center?

August 20, 2024 at 04:29PM

https://old.reddit.com/r/NixOS/comments/1exagu7/thoughts_on_snowflakeos_and_its_software_center/

view this post on Zulip IFTTT (Aug 21 2024 at 18:14):

In case you missed it...

August 21, 2024 at 10:01AM

https://old.reddit.com/r/NixOS/comments/1exuxeq/in_case_you_missed_it/

view this post on Zulip IFTTT (Aug 21 2024 at 21:19):

Nix in 100 Seconds - Fireship

August 21, 2024 at 11:45AM

https://old.reddit.com/r/NixOS/comments/1exxk22/nix_in_100_seconds_fireship/

view this post on Zulip IFTTT (Aug 22 2024 at 01:13):

Thinking about switching back to arch

August 17, 2024 at 01:58PM

https://old.reddit.com/r/NixOS/comments/1eurtxe/thinking_about_switching_back_to_arch/

view this post on Zulip IFTTT (Aug 22 2024 at 05:13):

How do you setup your python dev environments?

August 15, 2024 at 10:16AM

https://old.reddit.com/r/NixOS/comments/1et0rlr/how_do_you_setup_your_python_dev_environments/

view this post on Zulip IFTTT (Aug 22 2024 at 16:09):

Playwright on NixOS for webdev

August 22, 2024 at 02:06AM

https://old.reddit.com/r/NixOS/comments/1eyenzf/playwright_on_nixos_for_webdev/

view this post on Zulip IFTTT (Aug 22 2024 at 22:09):

Guide: Installing NixOS with Flakes and LVM on LUKS

August 16, 2024 at 07:16AM

https://old.reddit.com/r/NixOS/comments/1etpxjc/guide_installing_nixos_with_flakes_and_lvm_on_luks/

view this post on Zulip IFTTT (Aug 23 2024 at 00:13):

Nixsa - A Nix Standalone Environment

August 22, 2024 at 02:21PM

https://old.reddit.com/r/NixOS/comments/1eyuxr4/nixsa_a_nix_standalone_environment/

view this post on Zulip IFTTT (Aug 23 2024 at 16:13):

Noob coming to NixOS but already facing problems

August 22, 2024 at 01:27PM

https://old.reddit.com/r/NixOS/comments/1eytnjc/noob_coming_to_nixos_but_already_facing_problems/

view this post on Zulip IFTTT (Aug 23 2024 at 19:09):

Why Does "Stable" Feel Unstable on NixOS? Seeking Clarity on Channel Differences

August 22, 2024 at 01:27PM

https://old.reddit.com/r/NixOS/comments/1eytntt/why_does_stable_feel_unstable_on_nixos_seeking/

view this post on Zulip IFTTT (Aug 24 2024 at 18:13):

How to get dynamic vfio working with nixos

August 23, 2024 at 05:59PM

https://old.reddit.com/r/NixOS/comments/1ezt0g4/how_to_get_dynamic_vfio_working_with_nixos/

view this post on Zulip IFTTT (Aug 24 2024 at 19:18):

Why do people check hardware config into vcs?

August 24, 2024 at 08:47AM

https://old.reddit.com/r/NixOS/comments/1f08e2d/why_do_people_check_hardware_config_into_vcs/

view this post on Zulip IFTTT (Aug 24 2024 at 21:13):

What features is nixvim missing?

August 24, 2024 at 01:36AM

https://old.reddit.com/r/NixOS/comments/1f00lzn/what_features_is_nixvim_missing/

view this post on Zulip IFTTT (Aug 25 2024 at 01:13):

Nixcord - a little hm-module I wrote for Vencord

August 24, 2024 at 01:57PM

https://old.reddit.com/r/NixOS/comments/1f0ffpz/nixcord_a_little_hmmodule_i_wrote_for_vencord/

view this post on Zulip IFTTT (Aug 25 2024 at 19:13):

What is your rule of thumb for packages in shell.nix and/or configuration.nix?

August 25, 2024 at 02:31AM

https://old.reddit.com/r/NixOS/comments/1f0sijz/what_is_your_rule_of_thumb_for_packages_in/

view this post on Zulip IFTTT (Aug 26 2024 at 01:18):

From Frustration to Contribution: My Journey into NixOS Maintenance

August 25, 2024 at 04:13PM

https://old.reddit.com/r/NixOS/comments/1f19ppw/from_frustration_to_contribution_my_journey_into/

view this post on Zulip IFTTT (Aug 26 2024 at 05:13):

How many people have ADHD here?

August 25, 2024 at 08:21PM

https://old.reddit.com/r/NixOS/comments/1f1eis2/how_many_people_have_adhd_here/

view this post on Zulip IFTTT (Aug 26 2024 at 11:13):

Confession: NixOS is by far the best Linux Distro....

August 26, 2024 at 01:22AM

https://old.reddit.com/r/NixOS/comments/1f1j1yy/confession_nixos_is_by_far_the_best_linux_distro/

view this post on Zulip IFTTT (Aug 28 2024 at 00:09):

Security Updates on NixOS

August 25, 2024 at 08:36AM

https://old.reddit.com/r/NixOS/comments/1f0z5lc/security_updates_on_nixos/

view this post on Zulip IFTTT (Aug 28 2024 at 14:09):

Thinking of switching to NixOS from Arch, but I have some doubts.

August 27, 2024 at 03:14AM

https://old.reddit.com/r/NixOS/comments/1f2dg69/thinking_of_switching_to_nixos_from_arch_but_i/

view this post on Zulip IFTTT (Aug 28 2024 at 19:13):

Other distros seem bland?

August 27, 2024 at 10:55PM

https://old.reddit.com/r/NixOS/comments/1f32u67/other_distros_seem_bland/

view this post on Zulip IFTTT (Aug 29 2024 at 07:13):

Where to get started when you dont know anything?

August 28, 2024 at 09:18AM

https://old.reddit.com/r/NixOS/comments/1f3ed4o/where_to_get_started_when_you_dont_know_anything/

view this post on Zulip IFTTT (Aug 29 2024 at 22:09):

One does not simply learn Nix.

August 29, 2024 at 01:33PM

https://old.reddit.com/r/NixOS/comments/1f4cr5w/one_does_not_simply_learn_nix/

view this post on Zulip IFTTT (Aug 30 2024 at 04:13):

What's the difference between these nixos-unstable, nixpkgs-unstable, and master?

August 29, 2024 at 09:09AM

https://old.reddit.com/r/NixOS/comments/1f46b04/whats_the_difference_between_these_nixosunstable/

view this post on Zulip IFTTT (Aug 31 2024 at 03:13):

Nix Governance Constitution; draft for feedback

August 30, 2024 at 02:17PM

https://old.reddit.com/r/NixOS/comments/1f56fxa/nix_governance_constitution_draft_for_feedback/

view this post on Zulip IFTTT (Aug 31 2024 at 17:13):

nixpkgs-merge-bot

August 31, 2024 at 07:46AM

https://old.reddit.com/r/NixOS/comments/1f5oy7u/nixpkgsmergebot/

view this post on Zulip IFTTT (Aug 31 2024 at 21:18):

How do you manage your dotfiles?

August 31, 2024 at 04:28AM

https://old.reddit.com/r/NixOS/comments/1f5l3o5/how_do_you_manage_your_dotfiles/

view this post on Zulip IFTTT (Aug 31 2024 at 21:18):

NixOS 2nd most based OS

August 31, 2024 at 12:18PM

https://old.reddit.com/r/NixOS/comments/1f5v567/nixos_2nd_most_based_os/

view this post on Zulip IFTTT (Sep 01 2024 at 06:13):

I have made a very important change to my setup

August 31, 2024 at 06:27PM

https://old.reddit.com/r/NixOS/comments/1f62vzu/i_have_made_a_very_important_change_to_my_setup/

view this post on Zulip IFTTT (Sep 01 2024 at 16:13):

Should we pause for a bit with the Nix experiment, reflect on what a gigantic mess the Nix language is and try to address the problem before it's too late?

September 01, 2024 at 04:49AM

https://old.reddit.com/r/NixOS/comments/1f6ckf3/should_we_pause_for_a_bit_with_the_nix_experiment/

view this post on Zulip IFTTT (Sep 01 2024 at 21:18):

My New Favorite Game on NixOS: β€œSystem Admin Simulator 2024”! :video_game::working_on_it:

September 01, 2024 at 11:35AM

https://old.reddit.com/r/NixOS/comments/1f6ljl5/my_new_favorite_game_on_nixos_system_admin/

view this post on Zulip IFTTT (Sep 02 2024 at 01:13):

2 weeks ago, i distrohopped to NixOS. today, i discovered i had installed it on the wrong storage device.

September 01, 2024 at 11:10AM

https://old.reddit.com/r/NixOS/comments/1f6kygt/2_weeks_ago_i_distrohopped_to_nixos_today_i/

view this post on Zulip IFTTT (Sep 04 2024 at 13:13):

FYI: Font Config is currently broken in unstable and will prevent fonts from displaying & certain applications from running.

September 03, 2024 at 06:28PM

https://old.reddit.com/r/NixOS/comments/1f8h1wb/fyi_font_config_is_currently_broken_in_unstable/

view this post on Zulip IFTTT (Sep 05 2024 at 03:13):

Loving Nix OS

September 04, 2024 at 04:35PM

https://old.reddit.com/r/NixOS/comments/1f982fm/loving_nix_os/

view this post on Zulip IFTTT (Sep 05 2024 at 07:13):

beginner tries to install minecraft

September 04, 2024 at 10:43AM

https://old.reddit.com/r/NixOS/comments/1f8zlhb/beginner_tries_to_install_minecraft/

view this post on Zulip IFTTT (Sep 07 2024 at 02:43):

(Guide) Producing a good C development environment

September 03, 2024 at 09:44AM

https://old.reddit.com/r/NixOS/comments/1f84piu/guide_producing_a_good_c_development_environment/

view this post on Zulip IFTTT (Sep 07 2024 at 06:13):

Quick tip: you can get patches from GitHub PRs

September 06, 2024 at 11:21AM

https://old.reddit.com/r/NixOS/comments/1fam4t8/quick_tip_you_can_get_patches_from_github_prs/

view this post on Zulip IFTTT (Sep 07 2024 at 15:13):

I couldn't hold myself and fell for the dire mistake of compiling everything from source by specifying cpu architecture in config. It has been around 8 hours and it still compiles. Why does it compile firefox, gtk, Qt etc. as they are not installed on my server nix system? I didn't install them

September 01, 2024 at 04:49AM

https://old.reddit.com/r/NixOS/comments/1f6ckgc/i_couldnt_hold_myself_and_fell_for_the_dire/

view this post on Zulip IFTTT (Sep 07 2024 at 20:13):

Any better way to pin package version?

September 02, 2024 at 09:21AM

https://old.reddit.com/r/NixOS/comments/1f7aurt/any_better_way_to_pin_package_version/

view this post on Zulip IFTTT (Sep 08 2024 at 02:13):

NixOS for gaming?

September 05, 2024 at 04:12AM

https://old.reddit.com/r/NixOS/comments/1f9jt7d/nixos_for_gaming/

view this post on Zulip IFTTT (Sep 08 2024 at 06:13):

NixOS systemz 4 life

September 07, 2024 at 09:23PM

https://old.reddit.com/r/NixOS/comments/1fbpi6b/nixos_systemz_4_life/

view this post on Zulip IFTTT (Sep 08 2024 at 07:13):

Poly-repo Nixpkgs Fork Roadmap

September 07, 2024 at 04:24PM

https://old.reddit.com/r/NixOS/comments/1fbk4iw/polyrepo_nixpkgs_fork_roadmap/

view this post on Zulip IFTTT (Sep 08 2024 at 15:13):

Can we get more hw-probe results for NixOS into Linux Hardware Database (please)

September 08, 2024 at 01:15AM

https://old.reddit.com/r/NixOS/comments/1fbsv7l/can_we_get_more_hwprobe_results_for_nixos_into/

view this post on Zulip IFTTT (Sep 08 2024 at 19:13):

Anyone using nixvim?

September 08, 2024 at 07:20AM

https://old.reddit.com/r/NixOS/comments/1fbyvwf/anyone_using_nixvim/

view this post on Zulip IFTTT (Sep 09 2024 at 15:13):

Example repo with Flake + Terraform configuration for deploying NixOS (with GPU support) on AWS

September 08, 2024 at 06:18PM

https://old.reddit.com/r/NixOS/comments/1fcdmpt/example_repo_with_flake_terraform_configuration/

view this post on Zulip IFTTT (Sep 09 2024 at 23:13):

Should I switch over to NixOS

September 08, 2024 at 12:02PM

https://old.reddit.com/r/NixOS/comments/1fc5es5/should_i_switch_over_to_nixos/

view this post on Zulip IFTTT (Sep 10 2024 at 06:13):

Nix 2.24+ is vulnerable to (remote) privilege escalation

September 09, 2024 at 08:42PM

https://old.reddit.com/r/NixOS/comments/1fd8s77/nix_224_is_vulnerable_to_remote_privilege/

view this post on Zulip IFTTT (Sep 10 2024 at 15:13):

Just joined the gang

September 10, 2024 at 12:51AM

https://old.reddit.com/r/NixOS/comments/1fdcgtn/just_joined_the_gang/

view this post on Zulip IFTTT (Sep 10 2024 at 21:13):

Last call for feedback; Nix Governance Constitution to be finalised on 2024-09-16

September 09, 2024 at 04:54PM

https://old.reddit.com/r/NixOS/comments/1fd4bmk/last_call_for_feedback_nix_governance/

view this post on Zulip IFTTT (Sep 11 2024 at 00:13):

Live ISOs for COSMIC Alpha on NixOS

September 10, 2024 at 09:27AM

https://old.reddit.com/r/NixOS/comments/1fdm3gd/live_isos_for_cosmic_alpha_on_nixos/

view this post on Zulip IFTTT (Sep 11 2024 at 08:13):

Seeking Feedback: Paid Long-Term Support (LTS) for NixOS starting with 24.05

September 10, 2024 at 06:42AM

https://old.reddit.com/r/NixOS/comments/1fdi6ji/seeking_feedback_paid_longterm_support_lts_for/

view this post on Zulip IFTTT (Sep 11 2024 at 22:09):

devenv 1.1: Nested Nix outputs using the module system

September 11, 2024 at 03:36AM

https://old.reddit.com/r/NixOS/comments/1fe6y5m/devenv_11_nested_nix_outputs_using_the_module/

view this post on Zulip IFTTT (Sep 12 2024 at 02:13):

How do you guys hide specific parts of your config?

September 11, 2024 at 10:40AM

https://old.reddit.com/r/NixOS/comments/1feg7le/how_do_you_guys_hide_specific_parts_of_your_config/

view this post on Zulip IFTTT (Sep 14 2024 at 12:13):

Good configs to copy?

September 13, 2024 at 06:09AM

https://old.reddit.com/r/NixOS/comments/1ffucec/good_configs_to_copy/

view this post on Zulip IFTTT (Sep 14 2024 at 17:08):

Sorry guys, I'm learning

September 14, 2024 at 08:30AM

https://old.reddit.com/r/NixOS/comments/1fgop43/sorry_guys_im_learning/

view this post on Zulip IFTTT (Sep 15 2024 at 09:13):

So what's the proper way to install fonts from packages?

September 12, 2024 at 06:41PM

https://old.reddit.com/r/NixOS/comments/1ffj6mm/so_whats_the_proper_way_to_install_fonts_from/

view this post on Zulip IFTTT (Sep 15 2024 at 19:13):

Dropping Home-Manager

September 15, 2024 at 07:24AM

https://old.reddit.com/r/NixOS/comments/1fhdp8b/dropping_homemanager/

view this post on Zulip IFTTT (Sep 16 2024 at 06:13):

[Poly-repo Fork] Rename dependency names to be more ergonomic

September 15, 2024 at 01:11PM

https://old.reddit.com/r/NixOS/comments/1fhlxi2/polyrepo_fork_rename_dependency_names_to_be_more/

view this post on Zulip IFTTT (Sep 16 2024 at 17:15):

I'd take a gunshot instead of '--show-trace'

September 16, 2024 at 09:07AM

https://old.reddit.com/r/NixOS/comments/1fi8h20/id_take_a_gunshot_instead_of_showtrace/

view this post on Zulip IFTTT (Sep 16 2024 at 18:14):

Me rn

September 16, 2024 at 08:58AM

https://old.reddit.com/r/NixOS/comments/1fi88z1/me_rn/


Last updated: Sep 16 2024 at 19:45 UTC