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]
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]
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]
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]
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]
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]
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]
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]
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]
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/
β
submitted by /u/cfx_4188
[link] [comments]
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]
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]
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]
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]
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]
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]
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]
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]
/me changed the RSS feed to use the top weekly page
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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:
nix pills
nix tutorial on gitlab
zero to nix
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]
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]
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]
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]
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?
submitted by /u/I_hit_my_sister
[link] [comments]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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?β
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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 vianix-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 usenix 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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
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]
https://old.reddit.com/r/NixOS/comments/18oai2a/should_lsp_servers_be_in_the_project_flake/
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>
December 28, 2023 at 01:27PM
https://old.reddit.com/r/NixOS/comments/18t52hb/do_you_use_nixos_for_work/
December 29, 2023 at 01:23AM
https://old.reddit.com/r/NixOS/comments/18tj618/virtualization/
December 29, 2023 at 04:49PM
https://old.reddit.com/r/NixOS/comments/18u2ifm/migrating_system_config_to_flakes/
December 31, 2023 at 04:39AM
https://old.reddit.com/r/NixOS/comments/18v6yov/nixos_with_flakes_and_homemanager_how_to/
January 01, 2024 at 09:31AM
https://old.reddit.com/r/NixOS/comments/18w1ncb/can_game_flakes_be_a_thing/
December 28, 2023 at 11:12AM
https://old.reddit.com/r/NixOS/comments/18t1vu6/nixos_as_production_server/
January 01, 2024 at 07:55PM
https://old.reddit.com/r/NixOS/comments/18wfvan/i_finally_figured_out_nixos/
January 02, 2024 at 09:16AM
https://old.reddit.com/r/NixOS/comments/18wuk9t/ive_not_yet_figured_out_nixos/
January 02, 2024 at 12:32PM
https://old.reddit.com/r/NixOS/comments/18wzi7f/some_notes_on_nixos/
December 31, 2023 at 08:35PM
https://old.reddit.com/r/NixOS/comments/18vp1uz/use_both_local_paths_and_public_repo_urls_in/
January 04, 2024 at 05:16AM
https://old.reddit.com/r/NixOS/comments/18ycxwa/nix_package_manager_in_a_nutshell/
December 30, 2023 at 11:08AM
https://old.reddit.com/r/NixOS/comments/18un11e/which_packages_are_installed_with_minimal/
January 04, 2024 at 11:57PM
https://old.reddit.com/r/NixOS/comments/18z1k49/a_declarative_way_for_adding_environment/
January 05, 2024 at 11:28AM
https://old.reddit.com/r/NixOS/comments/18zf7zd/why_use_home_manager_for_configuration_instead_of/
January 04, 2024 at 03:18PM
https://old.reddit.com/r/NixOS/comments/18yr7w5/agenix_multisystem_nix_config_tips_for_locating/
January 05, 2024 at 06:48AM
https://old.reddit.com/r/NixOS/comments/18z8l4q/equivalent_to_apt_purge_to_remove_all/
January 06, 2024 at 08:39AM
https://old.reddit.com/r/NixOS/comments/1903xfk/fr_though_rotfl/
January 06, 2024 at 06:23AM
https://old.reddit.com/r/NixOS/comments/19011jh/how_do_i_configure_dotfiles_in_a_declarative/
January 07, 2024 at 07:48AM
https://old.reddit.com/r/NixOS/comments/190v0n7/ive_been_told_that_nix_isnt_fhs_compliant_what/
January 07, 2024 at 10:49PM
https://old.reddit.com/r/NixOS/comments/191ey9j/psa_syntax_highlighting_for_multiline_string/
January 08, 2024 at 07:02AM
https://old.reddit.com/r/NixOS/comments/191n5xe/suggestions_for_improving_the_configuration/
January 08, 2024 at 04:05PM
https://old.reddit.com/r/NixOS/comments/1920foj/are_flakes_useful_outside_of_version_pinning/
January 09, 2024 at 05:45AM
https://old.reddit.com/r/NixOS/comments/192f1yh/hello_people/
January 09, 2024 at 12:10PM
https://old.reddit.com/r/NixOS/comments/192o8cr/can_i_have_multiple_configs_for_a_single_computer/
January 10, 2024 at 06:41AM
https://old.reddit.com/r/NixOS/comments/1939srt/next_step_toward_automating_my_infrastructure/
January 10, 2024 at 11:21AM
https://old.reddit.com/r/NixOS/comments/193gk90/using_configs_on_multiple_hardwares_variables/
January 11, 2024 at 10:09AM
https://old.reddit.com/r/NixOS/comments/19487sk/static_json_api_written_in_nix_check_comments/
January 12, 2024 at 05:29AM
https://old.reddit.com/r/NixOS/comments/194v2w7/cachix_17/
January 13, 2024 at 04:15AM
https://old.reddit.com/r/NixOS/comments/195mqac/looking_for_a_linux_unix_discord_community/
January 12, 2024 at 03:27PM
https://old.reddit.com/r/NixOS/comments/19595vc/how_to_keep_source_when_doing_garbage_collection/
January 12, 2024 at 01:06AM
https://old.reddit.com/r/NixOS/comments/194qro7/steam_games_take_a_long_time_to_launch/
January 14, 2024 at 05:11PM
https://old.reddit.com/r/NixOS/comments/196vyql/x86_64_vm_on_aarch64_host/
nixpkgs.stdenv.mkDerivation
over builtins.derivation
?January 10, 2024 at 03:36PM
https://old.reddit.com/r/NixOS/comments/193mt89/why_use_nixpkgsstdenvmkderivation_over/
January 09, 2024 at 08:48AM
https://old.reddit.com/r/NixOS/comments/192j60w/services_programs_and_packages_oh_my/
January 15, 2024 at 08:56PM
https://old.reddit.com/r/NixOS/comments/197uhjz/the_entirety_of_my_time_on_youtube_last_week/
January 13, 2024 at 07:50AM
https://old.reddit.com/r/NixOS/comments/195qx0g/how_to_set_system_architecture_in_flakes/
January 16, 2024 at 11:55AM
https://old.reddit.com/r/NixOS/comments/198c65z/how_we_sped_up_nix_package_installs_in_devbox/
January 16, 2024 at 06:56PM
https://old.reddit.com/r/NixOS/comments/198m2fy/deploying_a_cloudflare_r2backed_nix_binary_cache/
January 17, 2024 at 05:21AM
https://old.reddit.com/r/NixOS/comments/198wf2e/is_it_normal_to_free_frustrated_or_mad_while/
January 18, 2024 at 03:47AM
https://old.reddit.com/r/NixOS/comments/199ocj8/so_how_do_i_really_search_for_packages/
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/
January 18, 2024 at 12:34PM
https://old.reddit.com/r/NixOS/comments/19a02a7/encrypted_btrfs_install/
January 15, 2024 at 01:29AM
https://old.reddit.com/r/NixOS/comments/1974sfo/espanso_wayland_anyone_doing_this/
January 18, 2024 at 05:41PM
https://old.reddit.com/r/NixOS/comments/19a774d/ready_made_configs/
January 19, 2024 at 07:47PM
https://old.reddit.com/r/NixOS/comments/19b2kg3/nixcon_north_american_schedule_is_live_come_join/
January 19, 2024 at 05:44PM
https://old.reddit.com/r/NixOS/comments/19b0584/what_language_server_is_currently_the_best_for_nix/
January 20, 2024 at 10:14AM
https://old.reddit.com/r/NixOS/comments/19bhy6c/building_and_privately_caching_x86_and_aarch64/
January 20, 2024 at 02:22PM
https://old.reddit.com/r/NixOS/comments/19bnmu9/thoughts_on_flakehubcom/
January 20, 2024 at 06:29PM
https://old.reddit.com/r/NixOS/comments/19bsui8/obsidian_not_using_gpu/
January 21, 2024 at 06:04AM
https://old.reddit.com/r/NixOS/comments/19c43p9/how_nixos_won_me_over_and_made_me_shift/
January 21, 2024 at 09:54PM
https://old.reddit.com/r/NixOS/comments/19coqyl/do_we_need_a_homemerger/
January 22, 2024 at 10:04AM
https://old.reddit.com/r/NixOS/comments/19d1xwk/any_guides_to_doing_music_on_nixos_or_linux_in/
January 23, 2024 at 03:38PM
https://old.reddit.com/r/NixOS/comments/19e2mtc/official_nixos_wiki/
January 23, 2024 at 03:00PM
https://old.reddit.com/r/NixOS/comments/19e1r5j/should_i_switch_to_nixos/
January 23, 2024 at 03:41AM
https://old.reddit.com/r/NixOS/comments/19dmje6/nixos_errors/
January 24, 2024 at 12:11PM
https://old.reddit.com/r/NixOS/comments/19epys3/some_wallpapers_created_using_stable_diffusion/
January 24, 2024 at 03:21PM
https://old.reddit.com/r/NixOS/comments/19euktr/fedora_silverblue_conversion/
January 23, 2024 at 11:20PM
https://old.reddit.com/r/NixOS/comments/19ebggz/the_history_of_nix_at_bellroy/
January 26, 2024 at 02:04AM
https://old.reddit.com/r/NixOS/comments/1abezn1/federated_self_hosted_blog_using_nixos/
January 27, 2024 at 08:28AM
https://old.reddit.com/r/NixOS/comments/1acemjr/overview_of_nix_formatters_ecosystem/
January 28, 2024 at 12:57PM
https://old.reddit.com/r/NixOS/comments/1adcvmj/nixos_is_a_great_distro_for_beginners/
January 27, 2024 at 10:42AM
https://old.reddit.com/r/NixOS/comments/1achq7o/switching_to_hyperland/
January 29, 2024 at 12:55PM
https://old.reddit.com/r/NixOS/comments/1ae5y4l/latest_nixpkgs_breaks_amdgpu_beware/
January 29, 2024 at 06:20PM
https://old.reddit.com/r/NixOS/comments/1aedb97/how_do_you_manage_your_develompent_environment/
January 25, 2024 at 08:48PM
https://old.reddit.com/r/NixOS/comments/1aba77l/install_nixos_on_raspberry_pi_5/
January 25, 2024 at 06:16PM
https://old.reddit.com/r/NixOS/comments/1ab77ht/flutter_on_nixos/
January 30, 2024 at 05:11PM
https://old.reddit.com/r/NixOS/comments/1af55b7/factorio/
January 31, 2024 at 12:23PM
https://old.reddit.com/r/NixOS/comments/1afrmnv/idiot_proofing_nixos_on_systems_that_dont_have/
February 01, 2024 at 07:13AM
https://old.reddit.com/r/NixOS/comments/1agd8zp/nixos_revolution/
January 31, 2024 at 03:43PM
https://old.reddit.com/r/NixOS/comments/1afwinx/nixos_for_work/
January 31, 2024 at 02:32AM
https://old.reddit.com/r/NixOS/comments/1afex3e/setting_up_python_projects/
February 02, 2024 at 01:36AM
https://old.reddit.com/r/NixOS/comments/1agzxce/im_considering_switching_to_nixos_from_arch/
February 01, 2024 at 08:12PM
https://old.reddit.com/r/NixOS/comments/1aguwji/arch_linux_to_nixos/
February 02, 2024 at 01:57PM
https://old.reddit.com/r/NixOS/comments/1ahfgs6/whos_streaming_nixos_conference/
February 03, 2024 at 08:37AM
https://old.reddit.com/r/NixOS/comments/1ai04sz/cant_update_nvidia_driver_on_stable_branch/
February 04, 2024 at 03:58PM
https://old.reddit.com/r/NixOS/comments/1aj2jv4/nixvirt_libvirt_domain_management_for_nix/
February 04, 2024 at 11:55PM
https://old.reddit.com/r/NixOS/comments/1ajbatg/nixcollectgarbage_d_not_removing_everything/
February 06, 2024 at 01:31PM
https://old.reddit.com/r/NixOS/comments/1akl9zf/as_a_linux_noob_nixos_has_saved_me_from_distro/
February 06, 2024 at 02:16PM
https://old.reddit.com/r/NixOS/comments/1akmety/im_considering_moving_away_from_nixos_should_i/
February 06, 2024 at 04:07PM
https://old.reddit.com/r/NixOS/comments/1akp1yl/whats_the_difference_between_nix_develop_and_nix/
February 07, 2024 at 10:30PM
https://old.reddit.com/r/NixOS/comments/1alpcvq/nixos_phone/
February 08, 2024 at 02:54PM
https://old.reddit.com/r/NixOS/comments/1am8spl/how_are_you_supposed_to_install_python_packages/
February 05, 2024 at 08:03PM
https://old.reddit.com/r/NixOS/comments/1ak0ttc/zephyrnix_develop_zephyr_projects_using_nix/
February 05, 2024 at 04:42AM
https://old.reddit.com/r/NixOS/comments/1ajfl8c/nixoscontainer_vs_docker_and_friends/
February 09, 2024 at 08:25AM
https://old.reddit.com/r/NixOS/comments/1ams0g3/how_to_set_homemanager_option_for_all_users_at/
February 10, 2024 at 06:19AM
https://old.reddit.com/r/NixOS/comments/1anhcl5/interview_with_cto_of_listenfield_agtech/
February 11, 2024 at 07:07AM
https://old.reddit.com/r/NixOS/comments/1aoa0wf/generations_are_still_there_after_garbage/
February 11, 2024 at 06:37PM
https://old.reddit.com/r/NixOS/comments/1aophc6/if_homemanager_programbashenabletrue_how_are/
February 11, 2024 at 10:19PM
https://old.reddit.com/r/NixOS/comments/1aoteqb/keychron_k1_pro_bluetooth_nixos_wkde_install/
February 12, 2024 at 06:09AM
https://old.reddit.com/r/NixOS/comments/1ap0ujc/thoughts_and_advice/
February 13, 2024 at 05:00AM
https://old.reddit.com/r/NixOS/comments/1apsw9w/me_trying_to_run_a_random_binary/
February 12, 2024 at 09:52AM
https://old.reddit.com/r/NixOS/comments/1ap6321/is_this_newbfriendly_nixnixos_intro_blog_post_any/
February 13, 2024 at 03:32AM
https://old.reddit.com/r/NixOS/comments/1aprbw1/hive/
February 13, 2024 at 07:01PM
https://old.reddit.com/r/NixOS/comments/1aqck9l/systemd_hardening_some_preconfigured_options_d/
February 13, 2024 at 09:58PM
https://old.reddit.com/r/NixOS/comments/1aqfuxq/bootloaderkernel_hardening_for_nixos/
February 14, 2024 at 08:46AM
https://old.reddit.com/r/NixOS/comments/1aqrfmd/making_the_plunge_to_nixos/
February 15, 2024 at 09:46AM
https://old.reddit.com/r/NixOS/comments/1arlc04/rust_development_on_nixos_part_1_bootstrapping/
February 17, 2024 at 08:14AM
https://old.reddit.com/r/NixOS/comments/1at5i9a/recreating_valves_steam_machine_using_nixos_build/
February 16, 2024 at 10:04AM
https://old.reddit.com/r/NixOS/comments/1asf7a7/last_resort_alternative_to_nix_packages/
February 18, 2024 at 12:19PM
https://old.reddit.com/r/NixOS/comments/1au3ox5/why_use_hyprland_andor_home_manager/
February 18, 2024 at 08:02PM
https://old.reddit.com/r/NixOS/comments/1aue12i/2_machines_running_same_nixos_but_different/
February 19, 2024 at 03:42AM
https://old.reddit.com/r/NixOS/comments/1auld93/cachix_downtime_due_to_signup_spam/
February 16, 2024 at 10:00PM
https://old.reddit.com/r/NixOS/comments/1asuvwg/nix_development_environment_question/
February 20, 2024 at 02:21AM
https://old.reddit.com/r/NixOS/comments/1avefl9/nerding_out_about_nix_and_nixos_with_jon_seager/
nix run
February 19, 2024 at 03:39AM
https://old.reddit.com/r/NixOS/comments/1aulb75/easy_neovim_with_configuration_and_runnable_with/
February 20, 2024 at 08:06PM
https://old.reddit.com/r/NixOS/comments/1aw2kp3/is_nix_a_frontloaded_or_constantload_time/
February 22, 2024 at 06:09AM
https://old.reddit.com/r/NixOS/comments/1ax79jw/httphttps_proxy_that_serves_previously_captured/
February 22, 2024 at 04:19PM
https://old.reddit.com/r/NixOS/comments/1axmhym/aarch64_and_zfs_requires_kernel_patches_for/
February 23, 2024 at 05:27AM
https://old.reddit.com/r/NixOS/comments/1ay0ft5/beginner_questions/
February 23, 2024 at 08:18AM
https://old.reddit.com/r/NixOS/comments/1ay4hjs/os_as_code_my_experience_of_nixos/
February 24, 2024 at 04:04PM
https://old.reddit.com/r/NixOS/comments/1az9n3u/why_im_seriously_considering_migrating_to_nixos/
February 25, 2024 at 08:43AM
https://old.reddit.com/r/NixOS/comments/1azscni/nixos_is_about_to_hit_an_inflection_point_were/
February 25, 2024 at 06:21PM
https://old.reddit.com/r/NixOS/comments/1b069tm/whats_the_endgoal_for_nixpkgs/
February 25, 2024 at 01:43AM
https://old.reddit.com/r/NixOS/comments/1azk5v4/contributing_scrutiny_to_nixpkgs/
February 26, 2024 at 04:56AM
https://old.reddit.com/r/NixOS/comments/1b0guwd/nixos_learning_by_doing_a_step_by_step_guideline/
February 26, 2024 at 11:30AM
https://old.reddit.com/r/NixOS/comments/1b0qb1u/so_about_kde_plasma/
February 27, 2024 at 02:45AM
https://old.reddit.com/r/NixOS/comments/1b18ylg/nixos_everything_everywhere_all_at_once_no/
February 27, 2024 at 06:26AM
https://old.reddit.com/r/NixOS/comments/1b1d46d/introduction_to_module_system/
February 28, 2024 at 12:49AM
https://old.reddit.com/r/NixOS/comments/1b21fbt/i_made_a_nix_function_to_easily_sandbox_apps/
February 28, 2024 at 11:50AM
https://old.reddit.com/r/NixOS/comments/1b2fi0b/kde_6_is_merged_into_master/
February 28, 2024 at 11:20AM
https://old.reddit.com/r/NixOS/comments/1b2epz3/lovin_nixos/
February 29, 2024 at 11:21AM
https://old.reddit.com/r/NixOS/comments/1b38ret/good_clear_explanation_of_flakes_for_normie/
February 29, 2024 at 11:15PM
https://old.reddit.com/r/NixOS/comments/1b3oawg/today_i_learned_of_the_glory_that_is_nixos/
March 01, 2024 at 10:17AM
https://old.reddit.com/r/NixOS/comments/1b41a37/id_love_nixos_but_im_scared_about_one_thing/
March 02, 2024 at 08:43PM
https://old.reddit.com/r/NixOS/comments/1b58kqc/i_just_realized/
March 03, 2024 at 08:50AM
https://old.reddit.com/r/NixOS/comments/1b5lp6v/back_to_square_one/
March 03, 2024 at 08:50PM
https://old.reddit.com/r/NixOS/comments/1b62b0j/nix_community_is_amazing/
March 04, 2024 at 12:49AM
https://old.reddit.com/r/NixOS/comments/1b668aw/nixarr_the_media_server_nixos_module/
March 04, 2024 at 07:38AM
https://old.reddit.com/r/NixOS/comments/1b6dwux/ive_tried_nixos_3_times_now_and_i_honestly_feel/
March 05, 2024 at 12:27AM
https://old.reddit.com/r/NixOS/comments/1b70daq/realised_sudo_nixcollectgarbage_doesnt_get/
March 04, 2024 at 05:08PM
https://old.reddit.com/r/NixOS/comments/1b6s4in/nh_yet_another_nix_cli_helper/
March 02, 2024 at 08:26PM
https://old.reddit.com/r/NixOS/comments/1b589jf/is_nixos_good_for_intermediate_linux_users/
March 06, 2024 at 04:25AM
https://old.reddit.com/r/NixOS/comments/1b7yf3l/the_joys_of_nixos/
March 04, 2024 at 01:56PM
https://old.reddit.com/r/NixOS/comments/1b6nftb/nixos_feasibility_in_enterprise/
March 08, 2024 at 01:02AM
https://old.reddit.com/r/NixOS/comments/1b9jrzt/why_is_the_nix_documentation_so_bad/
March 06, 2024 at 11:20AM
https://old.reddit.com/r/NixOS/comments/1b88ix7/replacing_dockercompose_with_nix_for_development/
March 07, 2024 at 12:37AM
https://old.reddit.com/r/NixOS/comments/1b8pqoq/rust_programmers_how_do_you_get_pkgconfig_to_work/
March 08, 2024 at 11:04PM
https://old.reddit.com/r/NixOS/comments/1babsps/nixos_is_an_amazing_server_os/
March 09, 2024 at 12:04AM
https://old.reddit.com/r/NixOS/comments/1bacom7/nixos_and_devops/
March 05, 2024 at 01:52PM
https://old.reddit.com/r/NixOS/comments/1b7hrwe/a_homelab_dashboard_for_nixos/
March 09, 2024 at 05:42PM
https://old.reddit.com/r/NixOS/comments/1baye9q/quick_check_is_this_possible_before_i_get_too/
March 09, 2024 at 03:10AM
https://old.reddit.com/r/NixOS/comments/1bafe9e/is_it_a_bad_practice_to_use_normal_configs/
March 06, 2024 at 04:56PM
https://old.reddit.com/r/NixOS/comments/1b8gult/is_it_safe_to_replace_the_etcnixos_folder_with_a/
March 11, 2024 at 07:28AM
https://old.reddit.com/r/NixOS/comments/1bc4hgo/main_use_of_nixos_as_an_operating_system/
March 10, 2024 at 12:42AM
https://old.reddit.com/r/NixOS/comments/1bb5o8y/nixos_vs_immutable_nix/
March 09, 2024 at 12:21PM
https://old.reddit.com/r/NixOS/comments/1bar5pu/scale_and_nixcon_north_america_kick_off_thursday/
March 12, 2024 at 07:35PM
https://old.reddit.com/r/NixOS/comments/1bdgc3j/share_your_nixos_neovim_gotchas/
March 07, 2024 at 11:19AM
https://old.reddit.com/r/NixOS/comments/1b92uwo/am_i_adding_modularity_the_right_way/
March 13, 2024 at 10:36AM
https://old.reddit.com/r/NixOS/comments/1bdxhrf/selectively_using_service_modules_from_nixos/
March 14, 2024 at 12:35AM
https://old.reddit.com/r/NixOS/comments/1befnhr/open_letter_nixos_users_against_mic_sponsorship/
March 13, 2024 at 08:19AM
https://old.reddit.com/r/NixOS/comments/1bdu27e/advice_from_advanced_nix_users/
March 13, 2024 at 11:45AM
https://old.reddit.com/r/NixOS/comments/1bdz9lj/nixos_for_gaming_bare_with_me/
March 15, 2024 at 05:00AM
https://old.reddit.com/r/NixOS/comments/1bfc9tm/meme_nixos_infection/
March 14, 2024 at 06:19PM
https://old.reddit.com/r/NixOS/comments/1bf1vrm/how_are_you_managing_nixos_hosts_in_production/
March 15, 2024 at 01:45AM
https://old.reddit.com/r/NixOS/comments/1bf9c0z/nixos_gaming_vs_other_distros/
March 15, 2024 at 11:18AM
https://old.reddit.com/r/NixOS/comments/1bfklkx/introducing_flakehub_cache/
March 15, 2024 at 06:17PM
https://old.reddit.com/r/NixOS/comments/1bfu543/how_do_you_guys_justify_the_novelty_on_daily/
March 16, 2024 at 05:02PM
https://old.reddit.com/r/NixOS/comments/1bgjx2p/nixos_on_orange_pi_5_plus_with_socle_new_features/
March 16, 2024 at 06:48PM
https://old.reddit.com/r/NixOS/comments/1bgm2br/starting_nixos/
March 17, 2024 at 05:41AM
https://old.reddit.com/r/NixOS/comments/1bgwlv6/how_to_start_nix/
March 16, 2024 at 02:31AM
https://old.reddit.com/r/NixOS/comments/1bg29z4/how_to_patch_a_package_source_on_nixos_case_study/
March 20, 2024 at 06:41AM
https://old.reddit.com/r/NixOS/comments/1bjdpjp/devenv_10_rewrite_in_rust/
March 16, 2024 at 09:51AM
https://old.reddit.com/r/NixOS/comments/1bgagzl/bazel_running_in_nix_running_in_guix/
March 18, 2024 at 03:33PM
https://old.reddit.com/r/NixOS/comments/1bi45uw/is_home_manager_the_only_good_way_of_setting_your/
March 21, 2024 at 11:58PM
https://old.reddit.com/r/NixOS/comments/1bkt4rw/using_nixos_for_my_homelab/
March 20, 2024 at 03:32PM
https://old.reddit.com/r/NixOS/comments/1bjqjr5/is_anyone_else_having_trouble_building_waybar_on/
March 19, 2024 at 02:37PM
https://old.reddit.com/r/NixOS/comments/1biw3iy/should_we_add_nix_flakes_to_the_godot_main_repo/
March 22, 2024 at 09:24AM
https://old.reddit.com/r/NixOS/comments/1bl3b5f/nixconfigmodules_module_system_to_simplify_nix/
March 23, 2024 at 04:01AM
https://old.reddit.com/r/NixOS/comments/1blpk58/is_unstable_unstable/
March 20, 2024 at 03:05PM
https://old.reddit.com/r/NixOS/comments/1bjpwc5/advanced_nixos_flake_setup_example/
March 21, 2024 at 04:13AM
https://old.reddit.com/r/NixOS/comments/1bk430s/how_do_you_structure_your_modules_and_imports/
March 24, 2024 at 04:12AM
https://old.reddit.com/r/NixOS/comments/1bmibb7/i_run_nixos_btw/
March 23, 2024 at 09:44PM
https://old.reddit.com/r/NixOS/comments/1bmcjc0/nixos_search_sort_by_popularity/
March 24, 2024 at 09:46AM
https://old.reddit.com/r/NixOS/comments/1bmp7os/why_are_flakes_not_stable_yet/
March 24, 2024 at 12:46PM
https://old.reddit.com/r/NixOS/comments/1bmtjjs/what_do_you_put_in_configurationnix_and_what_in/
March 24, 2024 at 08:04AM
https://old.reddit.com/r/NixOS/comments/1bmmuzz/nixosbased_container_and_vm_provisioning/
March 24, 2024 at 12:51PM
https://old.reddit.com/r/NixOS/comments/1bmtoae/how_i_finally_installed_nixos/
March 26, 2024 at 03:16AM
https://old.reddit.com/r/NixOS/comments/1bo4d3v/how_do_i_pick_between_devenv_devshell_devbox_and/
March 27, 2024 at 01:56AM
https://old.reddit.com/r/NixOS/comments/1box9ij/tailscale_and_systemd_on_nixos/
March 27, 2024 at 07:43AM
https://old.reddit.com/r/NixOS/comments/1bp3lh6/that_one_thing_you_wish_youd_have_come_across/
March 27, 2024 at 04:26PM
https://old.reddit.com/r/NixOS/comments/1bpggn3/how_much_of_a_pain_is_configuring_programs/
March 28, 2024 at 11:09AM
https://old.reddit.com/r/NixOS/comments/1bq2bx4/beginners_guide_to_sunshine_gamedesktop_streaming/
March 28, 2024 at 10:32AM
https://old.reddit.com/r/NixOS/comments/1bq1e2z/best_beginner_guide/
March 29, 2024 at 03:45AM
https://old.reddit.com/r/NixOS/comments/1bqm7hv/do_you_use_btrfs/
March 29, 2024 at 02:14PM
https://old.reddit.com/r/NixOS/comments/1bqzjn6/xpost_for_unstable_users_backdoor_in_upstream/
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/
March 31, 2024 at 02:17AM
https://old.reddit.com/r/NixOS/comments/1bs686e/how_can_i_deploycreate_the_entire_system_with_a/
April 01, 2024 at 06:25PM
https://old.reddit.com/r/NixOS/comments/1btm2pw/the_official_nixos_wiki_is_livenot_an_april_fools/
April 01, 2024 at 04:41PM
https://old.reddit.com/r/NixOS/comments/1btjoys/nixos_is_it_an_good_daily_use_distro_for_software/
April 02, 2024 at 12:28AM
https://old.reddit.com/r/NixOS/comments/1btsomk/nixos_unaffected_by_tz_vulnerability_cve20243094/
April 02, 2024 at 10:48AM
https://old.reddit.com/r/NixOS/comments/1bu52m1/bootstrappable/
April 02, 2024 at 08:28PM
https://old.reddit.com/r/NixOS/comments/1buikof/how_the_xz_backdoor_highlights_a_major_flaw_in_nix/
April 03, 2024 at 05:27AM
https://old.reddit.com/r/NixOS/comments/1burc2a/sometimes_i_love_nixos_other_times_im_losing_my/
April 03, 2024 at 01:46PM
https://old.reddit.com/r/NixOS/comments/1bv3s3s/nixos_foundation_pr_to_add_sponsorship_policy/
April 04, 2024 at 09:53AM
https://old.reddit.com/r/NixOS/comments/1bvs93a/recently_it_seems_like_everyone_is_switching_to/
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/
April 05, 2024 at 06:41AM
https://old.reddit.com/r/NixOS/comments/1bwic77/how_steep_is_the_learning_curve_for_nixos_for_a/
April 06, 2024 at 04:16AM
https://old.reddit.com/r/NixOS/comments/1bx938c/selfhosting_on_nixos_should_i_use_built_in/
April 06, 2024 at 02:48PM
https://old.reddit.com/r/NixOS/comments/1bxn8l7/introducing_flakecontainers_a_simple_poc/
April 06, 2024 at 08:23PM
https://old.reddit.com/r/NixOS/comments/1bxucst/nix_is_incredible/
April 07, 2024 at 02:14PM
https://old.reddit.com/r/NixOS/comments/1byfm71/catppuccinnix_the_soothing_pastel_theme_but_for/
April 08, 2024 at 08:10AM
https://old.reddit.com/r/NixOS/comments/1bz0bqc/finished_my_first_config_in_vm_and_transferred_to/
April 08, 2024 at 12:28AM
https://old.reddit.com/r/NixOS/comments/1byrugu/chaos_computer_club_fully_declarative_homelab_on/
April 09, 2024 at 08:40AM
https://old.reddit.com/r/NixOS/comments/1bzvaof/nixos_alternatives/
April 11, 2024 at 04:36AM
https://old.reddit.com/r/NixOS/comments/1c1cty8/introducing_nixinspect_a_tui_for_browsing_nix/
April 08, 2024 at 03:23PM
https://old.reddit.com/r/NixOS/comments/1bzbg3i/is_this_normal/
April 11, 2024 at 05:50PM
https://old.reddit.com/r/NixOS/comments/1c1vq7t/loving_nix_os/
April 12, 2024 at 03:04AM
https://old.reddit.com/r/NixOS/comments/1c25d6p/devenvsh_has_been_revamped/
April 09, 2024 at 11:32PM
https://old.reddit.com/r/NixOS/comments/1c0ezdr/nixosrebuild_switch_and_homemanager_switch/
April 07, 2024 at 02:31AM
https://old.reddit.com/r/NixOS/comments/1by0ee3/do_you_recommend_me_nixos_what_problems_may_i_find/
April 08, 2024 at 07:58PM
https://old.reddit.com/r/NixOS/comments/1bzhm13/installation_on_a_framework_16/
April 12, 2024 at 02:34PM
https://old.reddit.com/r/NixOS/comments/1c2kyo2/how_well_do_you_think_nixos_correlates_with/
April 14, 2024 at 06:22AM
https://old.reddit.com/r/NixOS/comments/1c3tgs2/home_manager_vs_copied_dot_files/
April 15, 2024 at 12:31AM
https://old.reddit.com/r/NixOS/comments/1c4g9n4/getting_ready_to_give_up_on_nixos/
April 14, 2024 at 03:40PM
https://old.reddit.com/r/NixOS/comments/1c46ghj/homelab_refactor_after_nixos_discovery_bad_idea/
April 14, 2024 at 02:07PM
https://old.reddit.com/r/NixOS/comments/1c44b0x/declarative_dotfiles_without_homemanager/
April 11, 2024 at 04:25AM
https://old.reddit.com/r/NixOS/comments/1c1cmn2/poll_nixpkgs_contributors_how_difficult_do_you/
April 16, 2024 at 12:44PM
https://old.reddit.com/r/NixOS/comments/1c5pc0y/i_deleted_my_boot_partition_while_in_the_middle/
April 16, 2024 at 05:36PM
https://old.reddit.com/r/NixOS/comments/1c5w9dh/git_commit_to_nixosrebuild/
April 17, 2024 at 02:44PM
https://old.reddit.com/r/NixOS/comments/1c6m5j4/how_to_use_both_stable_and_unstable_nixpkgs_in_a/
April 16, 2024 at 02:23PM
https://old.reddit.com/r/NixOS/comments/1c5rrxl/best_way_to_manage_python_venv/
April 18, 2024 at 12:54PM
https://old.reddit.com/r/NixOS/comments/1c7csct/gaming_on_nixos/
April 18, 2024 at 05:33PM
https://old.reddit.com/r/NixOS/comments/1c7jg5t/best_way_of_implementing_nixos_config_updates_for/
~/.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/
April 20, 2024 at 12:14AM
https://old.reddit.com/r/NixOS/comments/1c8jvdl/nixos_configs/
April 20, 2024 at 08:49AM
https://old.reddit.com/r/NixOS/comments/1c8t5xd/error_while_install_qtileextras/
April 21, 2024 at 02:42PM
https://old.reddit.com/r/NixOS/comments/1c9tlw3/open_letter_to_the_nixos_foundation/
April 21, 2024 at 02:48AM
https://old.reddit.com/r/NixOS/comments/1c9e2kk/the_declarative_configuration_of_nixos_appears/
April 21, 2024 at 05:31PM
https://old.reddit.com/r/NixOS/comments/1c9xbz2/compiled_half_a_system_for_no_reason_gentoo/
April 21, 2024 at 10:13PM
https://old.reddit.com/r/NixOS/comments/1ca2kpx/how_to_actually_do_the_thing_nixos_was_intended/
April 22, 2024 at 03:43PM
https://old.reddit.com/r/NixOS/comments/1caohq7/nixos_for_android/
April 23, 2024 at 05:11PM
https://old.reddit.com/r/NixOS/comments/1cbkces/nixos_as_a_learning_tool/
April 24, 2024 at 07:55AM
https://old.reddit.com/r/NixOS/comments/1cc0a4a/nixpkgs_anticipating_breaking_changes_as_they/
April 23, 2024 at 08:02PM
https://old.reddit.com/r/NixOS/comments/1cbnud1/looking_for_guidance_on_how_to_keep_nixos_as_my/
April 24, 2024 at 12:03PM
https://old.reddit.com/r/NixOS/comments/1cc6kkt/how_do_you_test_and_debug_your_nix_code/
April 24, 2024 at 03:19PM
https://old.reddit.com/r/NixOS/comments/1ccbf7a/what_is_the_best_method_to_install_packages_if_i/
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/
April 25, 2024 at 07:25PM
https://old.reddit.com/r/NixOS/comments/1cda1h4/the_dire_state_of_nixoss_moderation_culture/
April 26, 2024 at 01:05AM
https://old.reddit.com/r/NixOS/comments/1cdfukg/what_improvements_are_they_talking_about_guix_and/
April 26, 2024 at 11:57AM
https://old.reddit.com/r/NixOS/comments/1cdtgck/on_community_in_nix_eelco_dolstra/
April 26, 2024 at 11:23PM
https://old.reddit.com/r/NixOS/comments/1ce7oov/been_using_nix_for_half_a_year_feeling_kind_of/
April 27, 2024 at 06:23AM
https://old.reddit.com/r/NixOS/comments/1ceeg8h/transparency_about_jonringers_suspension/
April 27, 2024 at 09:47AM
https://old.reddit.com/r/NixOS/comments/1ceiz36/thoughts_on_jon_ringers_temporary_suspension/
April 27, 2024 at 03:23PM
https://old.reddit.com/r/NixOS/comments/1ceqprq/fifteen_contributors_have_officially_removed/
April 27, 2024 at 12:53PM
https://old.reddit.com/r/NixOS/comments/1cenaz8/i_presented_about_nix_at_conf42_using_nix_to/
April 28, 2024 at 01:57AM
https://old.reddit.com/r/NixOS/comments/1cf1xde/is_starting_to_contribute_worth_it/
April 29, 2024 at 02:57AM
https://old.reddit.com/r/NixOS/comments/1cfv8vo/moderation_nogo_zones/
April 30, 2024 at 05:44PM
https://old.reddit.com/r/NixOS/comments/1ch8vhv/eelco_steps_down/
May 01, 2024 at 04:36AM
https://old.reddit.com/r/NixOS/comments/1chjyfs/what_do_you_think_of_my_new_wallpaper/
May 01, 2024 at 08:33PM
https://old.reddit.com/r/NixOS/comments/1ci5r64/framework_nixos_communities_join_forces/
May 02, 2024 at 10:14AM
https://old.reddit.com/r/NixOS/comments/1cil5y4/is_nixos_the_best_gaming_distro_linux_gaming_setup/
May 03, 2024 at 12:04AM
https://old.reddit.com/r/NixOS/comments/1cj2ess/guys_i_did_it/
May 03, 2024 at 08:42AM
https://old.reddit.com/r/NixOS/comments/1cjbt6l/2024_nixos_crisis_tldr/
May 02, 2024 at 06:50PM
https://old.reddit.com/r/NixOS/comments/1ciwzag/nix_board_update_1_appointing_a_constitutional/
May 03, 2024 at 02:55PM
https://old.reddit.com/r/NixOS/comments/1cjkaqo/speeding_up_elf_relocations_for_storebased_systems/
May 04, 2024 at 06:00PM
https://old.reddit.com/r/NixOS/comments/1ckfeu0/reminder_nix_zulip_assembly_is_open_to_almost/
May 05, 2024 at 01:54PM
https://old.reddit.com/r/NixOS/comments/1cl17mu/new_nix_community_governance_right_now/
May 06, 2024 at 12:09AM
https://old.reddit.com/r/NixOS/comments/1clcwkf/i_wonder_how_many_nixos_sux_now_people_are/
May 06, 2024 at 02:54AM
https://old.reddit.com/r/NixOS/comments/1clf7v8/separating_nix_drama_discussions_from/
May 06, 2024 at 02:01PM
https://old.reddit.com/r/NixOS/comments/1clu0do/theres_a_reason_i_dont_use_gentoo/
May 07, 2024 at 04:38PM
https://old.reddit.com/r/NixOS/comments/1cmq9zw/can_we_get_some_flairs/
May 08, 2024 at 07:33AM
https://old.reddit.com/r/NixOS/comments/1cn60v1/shea_levy_has_been_suspended_from_the_governance/
May 08, 2024 at 12:52PM
https://old.reddit.com/r/NixOS/comments/1cndnyw/broken_promises_the_nix_governance_discussions/
May 08, 2024 at 03:30PM
https://old.reddit.com/r/NixOS/comments/1cnhfse/daily_driver/
May 10, 2024 at 09:52AM
https://old.reddit.com/r/NixOS/comments/1cou95d/meme_me_explaining_my_nixos_config_to_a_random/
May 10, 2024 at 08:18PM
https://old.reddit.com/r/NixOS/comments/1cp7w20/looking_for_a_proper_guide_on_learning_the_nix/
May 11, 2024 at 11:32AM
https://old.reddit.com/r/NixOS/comments/1cpnyeo/33_generations_on_my_first_day_i_love_this/
May 12, 2024 at 08:42AM
https://old.reddit.com/r/NixOS/comments/1cqapfu/how_come_nixos_is_so_awesome/
May 12, 2024 at 02:19PM
https://old.reddit.com/r/NixOS/comments/1cqic4w/report_on_nixos_governance_discussions/
May 09, 2024 at 03:22PM
https://old.reddit.com/r/NixOS/comments/1co9spe/is_it_possible_to_do_offline_updates_of_nixpkgs/
May 14, 2024 at 11:50AM
https://old.reddit.com/r/NixOS/comments/1crzw4l/open_question_for_the_community/
May 10, 2024 at 05:08PM
https://old.reddit.com/r/NixOS/comments/1cp4a3h/proposal_nix_values/
May 14, 2024 at 03:09AM
https://old.reddit.com/r/NixOS/comments/1crok4p/how_does_nixos_handle_fast_applications_with/
May 12, 2024 at 01:56AM
https://old.reddit.com/r/NixOS/comments/1cq3jt8/solution_are_your_fonts_not_working_you_might/
May 14, 2024 at 06:17PM
https://old.reddit.com/r/NixOS/comments/1cs8qpj/nix_forked_but_over_politics_instead_of_progress/
May 15, 2024 at 08:37PM
https://old.reddit.com/r/NixOS/comments/1ct3tdb/nixos_foundation_board_constitutional_assembly/
May 15, 2024 at 03:01AM
https://old.reddit.com/r/NixOS/comments/1csh3ku/drama_consequences_for_a_potential_new_user/
May 16, 2024 at 10:48AM
https://old.reddit.com/r/NixOS/comments/1ctiy3f/what_is_bad_about_documentation_exactly/
May 15, 2024 at 08:16PM
https://old.reddit.com/r/NixOS/comments/1ct3fut/why_a_generic_open_source_project_cant_also_be_a/
May 17, 2024 at 08:17PM
https://old.reddit.com/r/NixOS/comments/1cunvdw/friendly_reminder_optimizestore_is_not_on_by/
May 18, 2024 at 12:13AM
https://old.reddit.com/r/NixOS/comments/1curmzm/acceptance_threshold_for_any_project_event_or/
May 18, 2024 at 09:10AM
https://old.reddit.com/r/NixOS/comments/1cv0q6h/fwiw_this_is_my_definition_of_fascism/
May 14, 2024 at 11:33AM
https://old.reddit.com/r/NixOS/comments/1crzgpl/should_i_take_the_nix_pill/
May 18, 2024 at 09:20PM
https://old.reddit.com/r/NixOS/comments/1cvftmy/building_a_homelab_part_4_nixification_kubernetes/
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/
May 20, 2024 at 05:43PM
https://old.reddit.com/r/NixOS/comments/1cwv7vv/stylix_declaratively_apply_color_scheme_font_and/
May 19, 2024 at 04:01AM
https://old.reddit.com/r/NixOS/comments/1cvlpul/what_are_your_tools_for_monitoring_your_nixos/
May 21, 2024 at 07:58AM
https://old.reddit.com/r/NixOS/comments/1cx9wsy/question_nvidia_555_beta_released_today/
May 22, 2024 at 04:07AM
https://old.reddit.com/r/NixOS/comments/1cxxkvd/why_brought_you_to_nixos_more_importantly_what/
May 22, 2024 at 08:17AM
https://old.reddit.com/r/NixOS/comments/1cy2r9r/im_frustrated_with_my_nixos_install/
May 22, 2024 at 01:15PM
https://old.reddit.com/r/NixOS/comments/1cya4k4/rnixos_deleted_from_the_official_wiki/
May 22, 2024 at 11:08PM
https://old.reddit.com/r/NixOS/comments/1cylvdb/holy_crap_wayland_just_worked/
May 23, 2024 at 05:15AM
https://old.reddit.com/r/NixOS/comments/1cyrc50/new_to_nixos_should_i_use_flakes_for_my_setup/
May 22, 2024 at 09:29AM
https://old.reddit.com/r/NixOS/comments/1cy4j26/guide_fix_steam_on_linux_now_requires_the_ability/
May 25, 2024 at 06:44AM
https://old.reddit.com/r/NixOS/comments/1d0ccqe/can_a_yubikey_be_used_to_access_the_secretsyaml/
May 26, 2024 at 12:02PM
https://old.reddit.com/r/NixOS/comments/1d18ijf/i_have_been_contemplating_the_move_to_nixos_from/
May 27, 2024 at 02:07AM
https://old.reddit.com/r/NixOS/comments/1d1nd9l/walking_through_why_precompiled_hello_world/
May 27, 2024 at 05:57PM
https://old.reddit.com/r/NixOS/comments/1d277fo/potentially_declare_obsidian/
May 28, 2024 at 08:37AM
https://old.reddit.com/r/NixOS/comments/1d2mfkt/i_just_noticed_this_i_think_it_was_just_80000/
May 28, 2024 at 12:33PM
https://old.reddit.com/r/NixOS/comments/1d2s6r1/why_nixos_won_over_guix/
May 25, 2024 at 03:00PM
https://old.reddit.com/r/NixOS/comments/1d0momz/should_i_switch_to_nixos_from_ubuntu/
May 26, 2024 at 01:43PM
https://old.reddit.com/r/NixOS/comments/1d1apm0/impermanence_and_discovering_what_needs_to_be/
May 29, 2024 at 06:53PM
https://old.reddit.com/r/NixOS/comments/1d3ssmo/nixoscli_a_unified_nixos_tooling_replacement_for/
May 29, 2024 at 06:43PM
https://old.reddit.com/r/NixOS/comments/1d3slpg/gradle2nix_v2_call_for_testers/
May 29, 2024 at 12:34PM
https://old.reddit.com/r/NixOS/comments/1d3kqck/my_first_genuine_crash_frozen_machine_in_nixos/
May 30, 2024 at 03:50PM
https://old.reddit.com/r/NixOS/comments/1d4gobt/nix_is_just_json_with_functions/
May 31, 2024 at 12:35PM
https://old.reddit.com/r/NixOS/comments/1d544po/nixos_2405_released/
May 31, 2024 at 05:02PM
https://old.reddit.com/r/NixOS/comments/1d5a015/should_i_start_flaking/
June 01, 2024 at 04:20PM
https://old.reddit.com/r/NixOS/comments/1d5zo9c/upgrading_to_2405_corrupted_dns_for_all_snapshots/
May 30, 2024 at 09:26AM
https://old.reddit.com/r/NixOS/comments/1d483mk/nix_218_222_proposalsuggestion_on_switching_the/
June 03, 2024 at 12:42PM
https://old.reddit.com/r/NixOS/comments/1d7dheg/my_little_adventure_into_nixos/
June 03, 2024 at 09:00PM
https://old.reddit.com/r/NixOS/comments/1d7o4hb/nvidia_thinks_there_are_two_monitors/
June 04, 2024 at 02:43PM
https://old.reddit.com/r/NixOS/comments/1d8930h/just_switched_from_windows_amazingly_smooth_and/
June 04, 2024 at 01:42PM
https://old.reddit.com/r/NixOS/comments/1d87li4/should_i_keep_these_x11_codes_or_not/
June 04, 2024 at 10:17AM
https://old.reddit.com/r/NixOS/comments/1d82lj5/messages_after_booting/
June 05, 2024 at 02:00PM
https://old.reddit.com/r/NixOS/comments/1d90qlc/am_i_using_nixos_correctly/
June 06, 2024 at 04:10AM
https://old.reddit.com/r/NixOS/comments/1d9fm5k/locked_out_of_nixos_installer/
June 05, 2024 at 10:07AM
https://old.reddit.com/r/NixOS/comments/1d8v43d/curious_about_how_you_manage_packages/
June 06, 2024 at 01:37PM
https://old.reddit.com/r/NixOS/comments/1d9sfmy/mom_come_pick_me_up_im_scared/
June 06, 2024 at 07:12PM
https://old.reddit.com/r/NixOS/comments/1d9zogg/nixos_meme/
June 07, 2024 at 01:24AM
https://old.reddit.com/r/NixOS/comments/1da5o92/for_your_consideration/
June 07, 2024 at 11:18AM
https://old.reddit.com/r/NixOS/comments/1dahr3g/steamos_based_on_nixos/
June 07, 2024 at 06:36PM
https://old.reddit.com/r/NixOS/comments/1darina/my_nixos_rice/
June 07, 2024 at 08:11PM
https://old.reddit.com/r/NixOS/comments/1dat919/do_you_think_nix_language_is_confusing/
June 08, 2024 at 12:23PM
https://old.reddit.com/r/NixOS/comments/1dbalru/yubikey_gpg_key_sopsnix/
June 08, 2024 at 03:42PM
https://old.reddit.com/r/NixOS/comments/1dbev5o/thank_the_lord_for_nixos/
June 09, 2024 at 09:29AM
https://old.reddit.com/r/NixOS/comments/1dbxrsv/nixos_and_hyprland_perfect_match/
June 09, 2024 at 01:56PM
https://old.reddit.com/r/NixOS/comments/1dc4190/nixos_and_i3wm_perfect_match/
June 09, 2024 at 12:45PM
https://old.reddit.com/r/NixOS/comments/1dc2c2b/its_been_a_helluva_ride_when_i_first_moved_over/
June 12, 2024 at 02:05PM
https://old.reddit.com/r/NixOS/comments/1dehjla/i_have_an_issue_with_nixos/
June 13, 2024 at 02:58AM
https://old.reddit.com/r/NixOS/comments/1deva8d/nix_people/
June 09, 2024 at 10:03AM
https://old.reddit.com/r/NixOS/comments/1dbyjx7/hyprland_nixos_clean_and_simple/
June 12, 2024 at 11:31PM
https://old.reddit.com/r/NixOS/comments/1desdbv/could_we_convince_hetzner_to_add_nixos_as_a/
June 13, 2024 at 05:14PM
https://old.reddit.com/r/NixOS/comments/1dfdste/aside_from_the_declarative_nature_of_nixos_what/
June 15, 2024 at 01:22AM
https://old.reddit.com/r/NixOS/comments/1dgdada/nixos_in_2100/
June 09, 2024 at 06:46PM
https://old.reddit.com/r/NixOS/comments/1dca4se/nixos_beginner/
June 16, 2024 at 05:17AM
https://old.reddit.com/r/NixOS/comments/1dh6ci9/please_upvote_the_top_comment_to_get_nixos_as/
nixos
in the NixOS ISOJune 11, 2024 at 08:58AM
https://old.reddit.com/r/NixOS/comments/1ddhngn/password_for_the_user_nixos_in_the_nixos_iso/
June 10, 2024 at 09:12PM
https://old.reddit.com/r/NixOS/comments/1dd5c3s/a_flake_for_nook_desktop_animal_crossing_bgmrain/
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/
June 16, 2024 at 06:21AM
https://old.reddit.com/r/NixOS/comments/1dh7hd3/nixvim_is_done_now_i_can_proccede_to_nixos_config/
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/
June 17, 2024 at 01:54AM
https://old.reddit.com/r/NixOS/comments/1dhtj1t/how_to_use_neovim_without_nixvim/
June 17, 2024 at 07:52AM
https://old.reddit.com/r/NixOS/comments/1di002u/the_official_nixos_youtube_channel_is_live/
June 17, 2024 at 02:17PM
https://old.reddit.com/r/NixOS/comments/1di99pf/what_is_the_future_of_nixos/
June 17, 2024 at 08:26PM
https://old.reddit.com/r/NixOS/comments/1dih01j/a_true_story/
June 19, 2024 at 01:52AM
https://old.reddit.com/r/NixOS/comments/1djeh0v/nixos_iso_on_hetzner_as_default_please_vote_for/
June 19, 2024 at 11:28AM
https://old.reddit.com/r/NixOS/comments/1djqa3p/what_is_this_gentoo/
June 21, 2024 at 07:47AM
https://old.reddit.com/r/NixOS/comments/1dl5rxe/list_of_open_source_games_and_their_status_on/
June 21, 2024 at 10:22PM
https://old.reddit.com/r/NixOS/comments/1dloahg/constitutional_assembly_statement_on_jon_ringer/
June 22, 2024 at 07:03PM
https://old.reddit.com/r/NixOS/comments/1dmbimf/what_exactly_are_flakes/
June 20, 2024 at 04:59PM
https://old.reddit.com/r/NixOS/comments/1dkqcqc/best_nix_lsp_for_neovim/
June 21, 2024 at 11:57AM
https://old.reddit.com/r/NixOS/comments/1dlboqx/is_making_nix_my_first_distrodaily_driver_a/
June 23, 2024 at 08:33AM
https://old.reddit.com/r/NixOS/comments/1dmot2m/leaving_nixos_for_arch/
June 19, 2024 at 02:23PM
https://old.reddit.com/r/NixOS/comments/1djuh62/nvim_managed_100_by_nvim/
June 17, 2024 at 10:26PM
https://old.reddit.com/r/NixOS/comments/1dij1pa/github_redcodelabsrednixos_nixosbased_distro_for/
June 24, 2024 at 12:55PM
https://old.reddit.com/r/NixOS/comments/1dnmqb2/the_proxmox_hypervisor_on_nixos/
June 24, 2024 at 10:37AM
https://old.reddit.com/r/NixOS/comments/1dnje2z/46/
June 22, 2024 at 01:04AM
https://old.reddit.com/r/NixOS/comments/1dlqoem/catppuccin_gtk/
June 23, 2024 at 02:25PM
https://old.reddit.com/r/NixOS/comments/1dmwpej/someone_please_explain_homenix_flakesnix_combo_to/
June 24, 2024 at 02:05AM
https://old.reddit.com/r/NixOS/comments/1dn92v3/will_i_have_problems_with_university_projects/
June 26, 2024 at 03:51PM
https://old.reddit.com/r/NixOS/comments/1dpc0ea/title/
June 26, 2024 at 08:14PM
https://old.reddit.com/r/NixOS/comments/1dphcnj/nixos_makes_me_feel_powerful/
June 27, 2024 at 02:08AM
https://old.reddit.com/r/NixOS/comments/1dpmuh7/holy_moly/
June 27, 2024 at 08:45AM
https://old.reddit.com/r/NixOS/comments/1dpugf4/adding_parallel_evaluation_to_nix_by_eelco_dolstra/
June 27, 2024 at 06:59PM
https://old.reddit.com/r/NixOS/comments/1dq8c2j/where_are_my_sdks_are_stored_in_nixos/
June 28, 2024 at 09:06AM
https://old.reddit.com/r/NixOS/comments/1dqn9os/4_out_of_5_nixos_board_members_have_quit/
June 28, 2024 at 04:33PM
https://old.reddit.com/r/NixOS/comments/1dqxhvk/do_we_know_who_person_or_people_is_causing_nixos/
June 29, 2024 at 03:02PM
https://old.reddit.com/r/NixOS/comments/1drm8lx/aight/
June 29, 2024 at 02:01PM
https://old.reddit.com/r/NixOS/comments/1drkymj/python_is_a_nightmare_on_nixos/
July 01, 2024 at 02:28AM
https://old.reddit.com/r/NixOS/comments/1dsos3x/my_daily_routine/
July 01, 2024 at 09:21AM
https://old.reddit.com/r/NixOS/comments/1dsx4du/moving_forward_together/
July 02, 2024 at 07:54AM
https://old.reddit.com/r/NixOS/comments/1dtnsk5/what_on_earth_did_jonringer_even_do/
July 02, 2024 at 04:26AM
https://old.reddit.com/r/NixOS/comments/1dtjhtp/security_advisory_openssh_cve20246387_regresshion/
June 30, 2024 at 01:01PM
https://old.reddit.com/r/NixOS/comments/1dsa4wz/modern_resources_to_learn_nix_and_nixos/
July 02, 2024 at 09:50AM
https://old.reddit.com/r/NixOS/comments/1dtqlga/maintainers_exodus_over_recent_events/
July 02, 2024 at 03:20AM
https://old.reddit.com/r/NixOS/comments/1dtif2m/hyprland_this_hyprland_that/
July 03, 2024 at 10:22AM
https://old.reddit.com/r/NixOS/comments/1dujxu4/run_local_ai_chatbot_using_nix/
July 05, 2024 at 12:50AM
https://old.reddit.com/r/NixOS/comments/1dvsk9o/automatic_unattended_installer_thingy/
July 04, 2024 at 06:25AM
https://old.reddit.com/r/NixOS/comments/1dv6vil/is_nixos_good_for_putting_it_on_family_members/
July 06, 2024 at 02:28PM
https://old.reddit.com/r/NixOS/comments/1dx04a0/learn_nix_the_fun_way/
July 06, 2024 at 11:01PM
https://old.reddit.com/r/NixOS/comments/1dx9llm/searchnixosorg_now_gives_you_the_nixpkgs_commit/
July 07, 2024 at 01:46AM
https://old.reddit.com/r/NixOS/comments/1dxbzcm/duckduckgo_is_amazing/
July 08, 2024 at 04:35AM
https://old.reddit.com/r/NixOS/comments/1dy6ndt/hyprland_nixos_catppuccin_ags_emacs_setup_zzz/
July 08, 2024 at 09:45AM
https://old.reddit.com/r/NixOS/comments/1dydm3p/things_to_know_before_switching_to_nixos/
July 08, 2024 at 03:25PM
https://old.reddit.com/r/NixOS/comments/1dym2y1/system_freezes_after_shutting_down/
July 07, 2024 at 09:10AM
https://old.reddit.com/r/NixOS/comments/1dxk3b8/im_once_again_asking_for_your_help/
July 09, 2024 at 01:12PM
https://old.reddit.com/r/NixOS/comments/1dzc92k/evict_your_darlings_banish_dotfiles_from_your/
July 10, 2024 at 07:33AM
https://old.reddit.com/r/NixOS/comments/1dzx9ro/at_the_mountains_of_madness/
July 10, 2024 at 06:14PM
https://old.reddit.com/r/NixOS/comments/1e0clk6/growth_in_nixpkgs_maintainers_jul_2020_to_present/
July 10, 2024 at 11:23PM
https://old.reddit.com/r/NixOS/comments/1e0i3y8/lix_290_vanilla_ice_cream/
July 12, 2024 at 11:21AM
https://old.reddit.com/r/NixOS/comments/1e1ooqo/nix_secrets_for_dummies/
July 13, 2024 at 05:29AM
https://old.reddit.com/r/NixOS/comments/1e299op/nixos_modules_flakes/
July 10, 2024 at 07:21AM
https://old.reddit.com/r/NixOS/comments/1dzx0b1/configure_radarrsonarr_with_nixos/
July 14, 2024 at 10:15AM
https://old.reddit.com/r/NixOS/comments/1e37lbs/my_ergonomic_workspace/
July 13, 2024 at 01:02PM
https://old.reddit.com/r/NixOS/comments/1e2jds5/trying_to_advocate_for_nixdirenv_and_nix_shells/
July 15, 2024 at 01:05PM
https://old.reddit.com/r/NixOS/comments/1e44p0p/how_deep_did_you_go/
July 14, 2024 at 01:36PM
https://old.reddit.com/r/NixOS/comments/1e3c4nr/best_repos_for_inspiration/
July 16, 2024 at 06:41PM
https://old.reddit.com/r/NixOS/comments/1e561vi/announcement_polytest_for_running_tests_on/
July 11, 2024 at 05:59PM
https://old.reddit.com/r/NixOS/comments/1e14qpa/automated_nixos_installers_for_bulk_deployments/
July 13, 2024 at 06:01AM
https://old.reddit.com/r/NixOS/comments/1e29wld/using_mason_lazy_in_nixos/
July 17, 2024 at 05:45PM
https://old.reddit.com/r/NixOS/comments/1e5yemh/nixos_is_so_beautiful_and_amazing/
July 17, 2024 at 03:03PM
https://old.reddit.com/r/NixOS/comments/1e5urpr/i_noticed_there_werent_any_console_dice_rollers/
July 17, 2024 at 05:12PM
https://old.reddit.com/r/NixOS/comments/1e5xq0t/which_do_you_prefer_in_your_nix_code/
July 18, 2024 at 09:19AM
https://old.reddit.com/r/NixOS/comments/1e6fd7h/i_love_nix_but_holy_shit/
July 19, 2024 at 08:39AM
https://old.reddit.com/r/NixOS/comments/1e76r2j/nixos_vs_arch_linux/
July 19, 2024 at 07:06AM
https://old.reddit.com/r/NixOS/comments/1e74loi/nixcamp_2023_blog_post/
July 19, 2024 at 01:04AM
https://old.reddit.com/r/NixOS/comments/1e6yg2w/why_is_cron_depreciated/
July 20, 2024 at 12:33PM
https://old.reddit.com/r/NixOS/comments/1e83myg/new_wallpaper_just_dropped/
July 20, 2024 at 04:06PM
https://old.reddit.com/r/NixOS/comments/1e885up/an_argument_against_the_use_of_watchdog_chatbot/
July 21, 2024 at 09:16PM
https://old.reddit.com/r/NixOS/comments/1e95b69/how_do_you_guys_organize_your_nix_config_files_i/
July 22, 2024 at 06:43PM
https://old.reddit.com/r/NixOS/comments/1e9vqz5/how_did_i_miss_nixos/
July 23, 2024 at 08:16AM
https://old.reddit.com/r/NixOS/comments/1eaae70/full_time_nix_domen_koΕΎar/
July 24, 2024 at 03:10AM
https://old.reddit.com/r/NixOS/comments/1eaxsa7/it_takes_68_steps_to_deploy_odoo_with_nixos/
July 23, 2024 at 04:05PM
https://old.reddit.com/r/NixOS/comments/1ealygz/i_want_to_try_nixos/
July 24, 2024 at 10:00AM
https://old.reddit.com/r/NixOS/comments/1eb6k8n/nixostidy_a_module_to_clean_this_mess/
July 24, 2024 at 10:10AM
https://old.reddit.com/r/NixOS/comments/1eb6tcf/dont_use_nixos/
July 25, 2024 at 10:48AM
https://old.reddit.com/r/NixOS/comments/1ec15tp/arch_is_a_gateway_drug_to_nixos/
July 25, 2024 at 04:57PM
https://old.reddit.com/r/NixOS/comments/1ec9xwm/specialisations_are_pretty_dope/
July 26, 2024 at 08:11AM
https://old.reddit.com/r/NixOS/comments/1ecqiq7/is_nixos_the_best_os_for_servers/
July 26, 2024 at 07:13PM
https://old.reddit.com/r/NixOS/comments/1ed5gbc/the_nixos_conflict_in_under_5_minutes/
July 28, 2024 at 07:07AM
https://old.reddit.com/r/NixOS/comments/1ee88kz/nixcon_2024_berlin_oct_2527/
July 28, 2024 at 05:06PM
https://old.reddit.com/r/NixOS/comments/1eelq7h/a_modular_distro_on_top_of_nixos/
July 29, 2024 at 09:20AM
https://old.reddit.com/r/NixOS/comments/1ef3pgq/nix_survey_2024/
July 29, 2024 at 08:00AM
https://old.reddit.com/r/NixOS/comments/1ef1pd3/dev_workstation_yes_or_no/
July 29, 2024 at 05:26PM
https://old.reddit.com/r/NixOS/comments/1effly1/what_do_flakes_actually_allow_you_to_do/
July 29, 2024 at 04:48AM
https://old.reddit.com/r/NixOS/comments/1eexhh0/what_do_these_numbers_mean_while_rebuilding_a/
July 31, 2024 at 11:28AM
https://old.reddit.com/r/NixOS/comments/1eguj7b/nisoswsl_is_awesome/
July 29, 2024 at 08:17PM
https://old.reddit.com/r/NixOS/comments/1efj5ls/import_but_dont_import_your_nixos_modules/
August 01, 2024 at 04:01PM
https://old.reddit.com/r/NixOS/comments/1ehuiwa/homelab_focused_nix_community/
August 01, 2024 at 09:37PM
https://old.reddit.com/r/NixOS/comments/1ei1ank/nixd_has_gotten_fantastic/
August 02, 2024 at 11:14AM
https://old.reddit.com/r/NixOS/comments/1eih2rm/nix_btw/
August 03, 2024 at 07:57AM
https://old.reddit.com/r/NixOS/comments/1ej5ao5/new_one_every_week/
August 03, 2024 at 10:16AM
https://old.reddit.com/r/NixOS/comments/1ej8n4x/steamrun_is_magic_i_swear/
August 04, 2024 at 01:44AM
https://old.reddit.com/r/NixOS/comments/1ejqodn/flakes_dev_experience/
August 04, 2024 at 06:50PM
https://old.reddit.com/r/NixOS/comments/1ekbzsj/nixos_from_arch_user_the_ultimate_rabbit_hole/
August 03, 2024 at 10:09AM
https://old.reddit.com/r/NixOS/comments/1ej8gwn/frustrations_with_nixos_community_support_and/
July 30, 2024 at 05:57PM
https://old.reddit.com/r/NixOS/comments/1ega433/just_got_started_with_nix_made_minimal_changes_to/
August 05, 2024 at 09:07PM
https://old.reddit.com/r/NixOS/comments/1el8d1b/amount_of_packages_on_fresh_install/
August 06, 2024 at 09:45AM
https://old.reddit.com/r/NixOS/comments/1elmo7k/i_made_a_nix_flake_to_automate_amd_microcode/
August 07, 2024 at 12:21AM
https://old.reddit.com/r/NixOS/comments/1em5jxz/everyone_is_talking_about_flakes/
August 07, 2024 at 11:58AM
https://old.reddit.com/r/NixOS/comments/1emk6sr/nixos_is_awesome_and_a_little_guide_on_using/
August 08, 2024 at 10:26AM
https://old.reddit.com/r/NixOS/comments/1enbwgm/nix_site_design_improvement_attemptidea_what_do/
August 08, 2024 at 10:58PM
https://old.reddit.com/r/NixOS/comments/1ens8zm/nixpackages_search/
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/
August 10, 2024 at 12:47AM
https://old.reddit.com/r/NixOS/comments/1eonj1e/principal_skinner_on_immutable_distros/
August 08, 2024 at 11:53PM
https://old.reddit.com/r/NixOS/comments/1ent3us/challenged_myself_to_use_the_same_distro_for_the/
August 10, 2024 at 10:28AM
https://old.reddit.com/r/NixOS/comments/1eoyisn/its_been_a_while_since_ive_done_nix_collect/
August 11, 2024 at 01:19AM
https://old.reddit.com/r/NixOS/comments/1epfski/tvix_status_august_24/
August 11, 2024 at 02:19PM
https://old.reddit.com/r/NixOS/comments/1epvsp8/is_it_only_me_or_nixos_infrastructure_that_bad/
August 08, 2024 at 03:15PM
https://old.reddit.com/r/NixOS/comments/1enj0ab/note_to_self_do_not_collect_garbage_and_optimise/
August 11, 2024 at 04:58AM
https://old.reddit.com/r/NixOS/comments/1epj390/disk_space/
August 09, 2024 at 07:31PM
https://old.reddit.com/r/NixOS/comments/1eoi509/what_can_be_done_about_nixpkgs_package_quality/
August 13, 2024 at 11:09PM
https://old.reddit.com/r/NixOS/comments/1eru9kv/lix_got_me_with_those_juicy_multiline_logs/
August 14, 2024 at 04:38PM
https://old.reddit.com/r/NixOS/comments/1esgav3/nixos_will_fail_to_rebuild_right_now_github_is/
August 14, 2024 at 10:08AM
https://old.reddit.com/r/NixOS/comments/1es73qx/a_nod_to_nixos/
August 15, 2024 at 02:04PM
https://old.reddit.com/r/NixOS/comments/1et6gpp/finally/
August 13, 2024 at 10:17PM
https://old.reddit.com/r/NixOS/comments/1ertfbs/nixos_raspberry_pi_me/
August 16, 2024 at 04:58PM
https://old.reddit.com/r/NixOS/comments/1eu3xeg/the_cosmic_desktop_flake_finally_convinced_me_to/
August 14, 2024 at 05:25PM
https://old.reddit.com/r/NixOS/comments/1eshclo/lix_working_on_a_nixosnixpkgs_fork/
August 16, 2024 at 08:26AM
https://old.reddit.com/r/NixOS/comments/1etrpxu/why_does_home_manager_have_more_package_options/
August 14, 2024 at 09:25PM
https://old.reddit.com/r/NixOS/comments/1esm7y2/how_difficult_is_it_in_terms_of_effort_to_build/
August 18, 2024 at 04:29AM
https://old.reddit.com/r/NixOS/comments/1ev71qd/nixoscli_a_new_way_of_fast_option_discovery/
August 19, 2024 at 06:53AM
https://old.reddit.com/r/NixOS/comments/1ew2e6y/i_installed_nixos_and_it_only_took_me_9_attempts/
August 20, 2024 at 04:29PM
https://old.reddit.com/r/NixOS/comments/1exagu7/thoughts_on_snowflakeos_and_its_software_center/
August 21, 2024 at 10:01AM
https://old.reddit.com/r/NixOS/comments/1exuxeq/in_case_you_missed_it/
August 21, 2024 at 11:45AM
https://old.reddit.com/r/NixOS/comments/1exxk22/nix_in_100_seconds_fireship/
August 17, 2024 at 01:58PM
https://old.reddit.com/r/NixOS/comments/1eurtxe/thinking_about_switching_back_to_arch/
August 15, 2024 at 10:16AM
https://old.reddit.com/r/NixOS/comments/1et0rlr/how_do_you_setup_your_python_dev_environments/
August 22, 2024 at 02:06AM
https://old.reddit.com/r/NixOS/comments/1eyenzf/playwright_on_nixos_for_webdev/
August 16, 2024 at 07:16AM
https://old.reddit.com/r/NixOS/comments/1etpxjc/guide_installing_nixos_with_flakes_and_lvm_on_luks/
August 22, 2024 at 02:21PM
https://old.reddit.com/r/NixOS/comments/1eyuxr4/nixsa_a_nix_standalone_environment/
August 22, 2024 at 01:27PM
https://old.reddit.com/r/NixOS/comments/1eytnjc/noob_coming_to_nixos_but_already_facing_problems/
August 22, 2024 at 01:27PM
https://old.reddit.com/r/NixOS/comments/1eytntt/why_does_stable_feel_unstable_on_nixos_seeking/
August 23, 2024 at 05:59PM
https://old.reddit.com/r/NixOS/comments/1ezt0g4/how_to_get_dynamic_vfio_working_with_nixos/
August 24, 2024 at 08:47AM
https://old.reddit.com/r/NixOS/comments/1f08e2d/why_do_people_check_hardware_config_into_vcs/
August 24, 2024 at 01:36AM
https://old.reddit.com/r/NixOS/comments/1f00lzn/what_features_is_nixvim_missing/
August 24, 2024 at 01:57PM
https://old.reddit.com/r/NixOS/comments/1f0ffpz/nixcord_a_little_hmmodule_i_wrote_for_vencord/
August 25, 2024 at 02:31AM
https://old.reddit.com/r/NixOS/comments/1f0sijz/what_is_your_rule_of_thumb_for_packages_in/
August 25, 2024 at 04:13PM
https://old.reddit.com/r/NixOS/comments/1f19ppw/from_frustration_to_contribution_my_journey_into/
August 25, 2024 at 08:21PM
https://old.reddit.com/r/NixOS/comments/1f1eis2/how_many_people_have_adhd_here/
August 26, 2024 at 01:22AM
https://old.reddit.com/r/NixOS/comments/1f1j1yy/confession_nixos_is_by_far_the_best_linux_distro/
August 25, 2024 at 08:36AM
https://old.reddit.com/r/NixOS/comments/1f0z5lc/security_updates_on_nixos/
August 27, 2024 at 03:14AM
https://old.reddit.com/r/NixOS/comments/1f2dg69/thinking_of_switching_to_nixos_from_arch_but_i/
August 27, 2024 at 10:55PM
https://old.reddit.com/r/NixOS/comments/1f32u67/other_distros_seem_bland/
August 28, 2024 at 09:18AM
https://old.reddit.com/r/NixOS/comments/1f3ed4o/where_to_get_started_when_you_dont_know_anything/
August 29, 2024 at 01:33PM
https://old.reddit.com/r/NixOS/comments/1f4cr5w/one_does_not_simply_learn_nix/
August 29, 2024 at 09:09AM
https://old.reddit.com/r/NixOS/comments/1f46b04/whats_the_difference_between_these_nixosunstable/
August 30, 2024 at 02:17PM
https://old.reddit.com/r/NixOS/comments/1f56fxa/nix_governance_constitution_draft_for_feedback/
August 31, 2024 at 07:46AM
https://old.reddit.com/r/NixOS/comments/1f5oy7u/nixpkgsmergebot/
August 31, 2024 at 04:28AM
https://old.reddit.com/r/NixOS/comments/1f5l3o5/how_do_you_manage_your_dotfiles/
August 31, 2024 at 12:18PM
https://old.reddit.com/r/NixOS/comments/1f5v567/nixos_2nd_most_based_os/
August 31, 2024 at 06:27PM
https://old.reddit.com/r/NixOS/comments/1f62vzu/i_have_made_a_very_important_change_to_my_setup/
September 01, 2024 at 04:49AM
https://old.reddit.com/r/NixOS/comments/1f6ckf3/should_we_pause_for_a_bit_with_the_nix_experiment/
September 01, 2024 at 11:35AM
https://old.reddit.com/r/NixOS/comments/1f6ljl5/my_new_favorite_game_on_nixos_system_admin/
September 01, 2024 at 11:10AM
https://old.reddit.com/r/NixOS/comments/1f6kygt/2_weeks_ago_i_distrohopped_to_nixos_today_i/
September 03, 2024 at 06:28PM
https://old.reddit.com/r/NixOS/comments/1f8h1wb/fyi_font_config_is_currently_broken_in_unstable/
September 04, 2024 at 04:35PM
https://old.reddit.com/r/NixOS/comments/1f982fm/loving_nix_os/
September 04, 2024 at 10:43AM
https://old.reddit.com/r/NixOS/comments/1f8zlhb/beginner_tries_to_install_minecraft/
September 03, 2024 at 09:44AM
https://old.reddit.com/r/NixOS/comments/1f84piu/guide_producing_a_good_c_development_environment/
September 06, 2024 at 11:21AM
https://old.reddit.com/r/NixOS/comments/1fam4t8/quick_tip_you_can_get_patches_from_github_prs/
September 01, 2024 at 04:49AM
https://old.reddit.com/r/NixOS/comments/1f6ckgc/i_couldnt_hold_myself_and_fell_for_the_dire/
September 02, 2024 at 09:21AM
https://old.reddit.com/r/NixOS/comments/1f7aurt/any_better_way_to_pin_package_version/
September 05, 2024 at 04:12AM
https://old.reddit.com/r/NixOS/comments/1f9jt7d/nixos_for_gaming/
September 07, 2024 at 09:23PM
https://old.reddit.com/r/NixOS/comments/1fbpi6b/nixos_systemz_4_life/
September 07, 2024 at 04:24PM
https://old.reddit.com/r/NixOS/comments/1fbk4iw/polyrepo_nixpkgs_fork_roadmap/
September 08, 2024 at 01:15AM
https://old.reddit.com/r/NixOS/comments/1fbsv7l/can_we_get_more_hwprobe_results_for_nixos_into/
September 08, 2024 at 07:20AM
https://old.reddit.com/r/NixOS/comments/1fbyvwf/anyone_using_nixvim/
September 08, 2024 at 06:18PM
https://old.reddit.com/r/NixOS/comments/1fcdmpt/example_repo_with_flake_terraform_configuration/
September 08, 2024 at 12:02PM
https://old.reddit.com/r/NixOS/comments/1fc5es5/should_i_switch_over_to_nixos/
September 09, 2024 at 08:42PM
https://old.reddit.com/r/NixOS/comments/1fd8s77/nix_224_is_vulnerable_to_remote_privilege/
September 10, 2024 at 12:51AM
https://old.reddit.com/r/NixOS/comments/1fdcgtn/just_joined_the_gang/
September 09, 2024 at 04:54PM
https://old.reddit.com/r/NixOS/comments/1fd4bmk/last_call_for_feedback_nix_governance/
September 10, 2024 at 09:27AM
https://old.reddit.com/r/NixOS/comments/1fdm3gd/live_isos_for_cosmic_alpha_on_nixos/
September 10, 2024 at 06:42AM
https://old.reddit.com/r/NixOS/comments/1fdi6ji/seeking_feedback_paid_longterm_support_lts_for/
September 11, 2024 at 03:36AM
https://old.reddit.com/r/NixOS/comments/1fe6y5m/devenv_11_nested_nix_outputs_using_the_module/
September 11, 2024 at 10:40AM
https://old.reddit.com/r/NixOS/comments/1feg7le/how_do_you_guys_hide_specific_parts_of_your_config/
September 13, 2024 at 06:09AM
https://old.reddit.com/r/NixOS/comments/1ffucec/good_configs_to_copy/
September 14, 2024 at 08:30AM
https://old.reddit.com/r/NixOS/comments/1fgop43/sorry_guys_im_learning/
September 12, 2024 at 06:41PM
https://old.reddit.com/r/NixOS/comments/1ffj6mm/so_whats_the_proper_way_to_install_fonts_from/
September 15, 2024 at 07:24AM
https://old.reddit.com/r/NixOS/comments/1fhdp8b/dropping_homemanager/
September 15, 2024 at 01:11PM
https://old.reddit.com/r/NixOS/comments/1fhlxi2/polyrepo_fork_rename_dependency_names_to_be_more/
September 16, 2024 at 09:07AM
https://old.reddit.com/r/NixOS/comments/1fi8h20/id_take_a_gunshot_instead_of_showtrace/
September 16, 2024 at 08:58AM
https://old.reddit.com/r/NixOS/comments/1fi88z1/me_rn/
September 16, 2024 at 11:34AM
https://old.reddit.com/r/NixOS/comments/1fic688/nix_steering_committee_election_2024/
September 12, 2024 at 07:04AM
https://old.reddit.com/r/NixOS/comments/1ff3dcz/slow_performance_on_nixos_with_docker_compared_to/
September 18, 2024 at 07:14AM
https://old.reddit.com/r/NixOS/comments/1fjtv4j/my_spaghetti_looks_like_nixos/
September 17, 2024 at 10:12PM
https://old.reddit.com/r/NixOS/comments/1fjl6x4/why_does_it_take_so_much_time_to_clear_the_login/
September 18, 2024 at 01:58AM
https://old.reddit.com/r/NixOS/comments/1fjoaow/rant_and_praise_for_nixos/
September 19, 2024 at 07:31AM
https://old.reddit.com/r/NixOS/comments/1fkma7u/default_nix_version_reverted_again_nix_revert/
September 19, 2024 at 12:08AM
https://old.reddit.com/r/NixOS/comments/1fkexwe/thinking_about_using_nixos_dailyis_it_worth_it/
September 20, 2024 at 07:25AM
https://old.reddit.com/r/NixOS/comments/1fldb1r/looking_for_advice_on_using_nix_in_a_corporate/
September 20, 2024 at 01:49PM
https://old.reddit.com/r/NixOS/comments/1flm7xn/remember_to_endorse_candidates_you_like_in_the_sc/
September 21, 2024 at 09:42AM
https://old.reddit.com/r/NixOS/comments/1fm7674/finally_on_nixos/
September 21, 2024 at 08:16PM
https://old.reddit.com/r/NixOS/comments/1fmjwlv/what_is_going_on_300gb_nix_flake/
September 22, 2024 at 04:19PM
https://old.reddit.com/r/NixOS/comments/1fn6jh8/idea_for_nixos_installer_disable_screen/
September 23, 2024 at 09:14AM
https://old.reddit.com/r/NixOS/comments/1fnocbz/brooo_please/
September 24, 2024 at 12:57AM
https://old.reddit.com/r/NixOS/comments/1fo77mo/is_nixos_able_to_be_hardened/
September 24, 2024 at 07:39AM
https://old.reddit.com/r/NixOS/comments/1foe3bd/immich_merged_to_nixosmaster/
September 24, 2024 at 08:00AM
https://old.reddit.com/r/NixOS/comments/1foem5n/sc_election_2024_nominate_edolstra/
September 25, 2024 at 02:00AM
https://old.reddit.com/r/NixOS/comments/1fozy15/the_nixway_of_running_nonnixified_binaries_on_nix/
September 26, 2024 at 11:56AM
https://old.reddit.com/r/NixOS/comments/1fq3xg5/i_have_successfully_become_another_victim_of_the/
September 26, 2024 at 12:51PM
https://old.reddit.com/r/NixOS/comments/1fq57wy/neovim_on_nix_is_driving_me_nuts/
September 27, 2024 at 10:23AM
https://old.reddit.com/r/NixOS/comments/1fqt2to/podcast_ftn_interview_with_jonathan_ringer/
September 24, 2024 at 07:09PM
https://old.reddit.com/r/NixOS/comments/1fotp97/git_hashes_in_nix/
September 24, 2024 at 10:34AM
https://old.reddit.com/r/NixOS/comments/1foib3e/whats_the_current_situation_of_nix_for_newcomers/
September 27, 2024 at 01:12PM
https://old.reddit.com/r/NixOS/comments/1fqwy0w/sc_election_your_stance_on_sponsorships_in_the/
September 26, 2024 at 11:39AM
https://old.reddit.com/r/NixOS/comments/1fq3iyo/nixos_for_every_pc_on_the_planet/
September 30, 2024 at 04:17PM
https://old.reddit.com/r/NixOS/comments/1ft9n41/man_i_love_my_computer_and_nix_its_usually_quite/
September 29, 2024 at 01:22AM
https://old.reddit.com/r/NixOS/comments/1frzom3/lazyvim_distro_example/
October 01, 2024 at 06:56AM
https://old.reddit.com/r/NixOS/comments/1ftopwo/is_nixos_that_difficult/
September 30, 2024 at 04:25AM
https://old.reddit.com/r/NixOS/comments/1fst619/freaking_awesome_setted_up_imermanence_with_luks/
September 26, 2024 at 04:18PM
https://old.reddit.com/r/NixOS/comments/1fq9whj/do_you_work_with_nix_or_nixos/
October 02, 2024 at 02:13PM
https://old.reddit.com/r/NixOS/comments/1fur91n/disko_got_a_new_logo/
October 02, 2024 at 08:45PM
https://old.reddit.com/r/NixOS/comments/1fuyzdt/theres_a_reason_i_dont_use_gentoo/
October 03, 2024 at 06:38AM
https://old.reddit.com/r/NixOS/comments/1fv7yqc/devenv_13_instant_developer_environments_with_nix/
October 02, 2024 at 11:06PM
https://old.reddit.com/r/NixOS/comments/1fv15xj/graduating_from_newbie_to_knows_a_little/
October 04, 2024 at 08:43AM
https://old.reddit.com/r/NixOS/comments/1fw2a1s/nixos_profile_photo/
October 03, 2024 at 12:29PM
https://old.reddit.com/r/NixOS/comments/1fvg1hi/i_dont_know_nix_should_i_still_try_out_nixos/
October 04, 2024 at 08:13PM
https://old.reddit.com/r/NixOS/comments/1fwh4f0/networkinginterfaces_vs_systemdnetworknetworks/
October 04, 2024 at 03:14PM
https://old.reddit.com/r/NixOS/comments/1fwbd4b/nixosunifiedtemplate_nixos_nixdarwin_homemanager/
October 05, 2024 at 12:30PM
https://old.reddit.com/r/NixOS/comments/1fwyak1/its_in_staging2405_not_yet_in_stagingnext2405_the/
October 05, 2024 at 02:44PM
https://old.reddit.com/r/NixOS/comments/1fx1653/nix_is_built_for_its_own_developers/
October 05, 2024 at 02:58PM
https://old.reddit.com/r/NixOS/comments/1fx1go0/is_there_a_benefit_to_using_nixos_as_a_casual/
October 06, 2024 at 11:02AM
https://old.reddit.com/r/NixOS/comments/1fxmmtf/retro_handheld_support_rk3588_chipset_has/
October 06, 2024 at 09:24PM
https://old.reddit.com/r/NixOS/comments/1fxzfay/wip_introducing_nixthesystems_a_platform_for/
October 07, 2024 at 04:44AM
https://old.reddit.com/r/NixOS/comments/1fy5lab/released_v2_of_my_nvim_setup_modular_minimalist/
October 08, 2024 at 01:04AM
https://old.reddit.com/r/NixOS/comments/1fyun1k/my_nix_configuration_with_flakes_agenix/
October 05, 2024 at 04:45PM
https://old.reddit.com/r/NixOS/comments/1fx3lc1/my_nixos_utility_nixedit/
October 10, 2024 at 02:10AM
https://old.reddit.com/r/NixOS/comments/1g0emxe/leaving_nix_for_guix/
October 10, 2024 at 01:05AM
https://old.reddit.com/r/NixOS/comments/1g0du55/is_nixos_good_for_development/
October 11, 2024 at 07:47AM
https://old.reddit.com/r/NixOS/comments/1g1bjib/yo_this_is_not_rabbit_hole_its_a_black_hole/
October 10, 2024 at 10:37PM
https://old.reddit.com/r/NixOS/comments/1g12rq7/discussion_the_difference_between_gnu_guix_and/
October 11, 2024 at 09:20PM
https://old.reddit.com/r/NixOS/comments/1g1s99w/heard_about_the_rollbacks_came_for_the/
October 12, 2024 at 11:02AM
https://old.reddit.com/r/NixOS/comments/1g25xkt/new_bff/
October 12, 2024 at 06:02AM
https://old.reddit.com/r/NixOS/comments/1g1zn65/nix_has_actually_less_packages_than_aur/
October 12, 2024 at 04:49PM
https://old.reddit.com/r/NixOS/comments/1g2d2fg/me_trying_to_run_a_random_binary/
October 13, 2024 at 03:23AM
https://old.reddit.com/r/NixOS/comments/1g2mmq7/my_small_side_project_nix_gitlab_ci/
October 14, 2024 at 09:56AM
https://old.reddit.com/r/NixOS/comments/1g3kno8/made_a_nixos_oh_my_posh_theme/
October 14, 2024 at 04:04AM
https://old.reddit.com/r/NixOS/comments/1g3d4ku/psa_nix_elections_database_corrupted_revote_likely/
October 16, 2024 at 06:57AM
https://old.reddit.com/r/NixOS/comments/1g500h1/rate_my_flake/
October 16, 2024 at 08:06PM
https://old.reddit.com/r/NixOS/comments/1g5hcc9/cuda_support_moved_to_nixcommunity/
October 14, 2024 at 04:20AM
https://old.reddit.com/r/NixOS/comments/1g3dd5e/flakenix_that_covers_multiple_hosts/
October 15, 2024 at 03:34AM
https://old.reddit.com/r/NixOS/comments/1g44kta/if_youre_struggling_to_get_npm_packages_to_work/
October 18, 2024 at 06:04AM
https://old.reddit.com/r/NixOS/comments/1g6hkln/using_nixos_to_develop_mobile_apps_with_rust/
October 14, 2024 at 01:36PM
https://old.reddit.com/r/NixOS/comments/1g3q2gq/yae_powerful_yet_minimal_dependency_manager/
October 18, 2024 at 01:33PM
https://old.reddit.com/r/NixOS/comments/1g6s0mc/nix_elections_voting_open_until_20241103/
October 19, 2024 at 08:05AM
https://old.reddit.com/r/NixOS/comments/1g7avb8/blog_deploying_nix_builds_on_flyio/
October 20, 2024 at 01:17PM
https://old.reddit.com/r/NixOS/comments/1g87z2q/switching_from_arch_to_nix/
October 20, 2024 at 07:32AM
https://old.reddit.com/r/NixOS/comments/1g801r9/lix_forking_nixosnixpkgs/
October 21, 2024 at 07:55AM
https://old.reddit.com/r/NixOS/comments/1g8rmys/a_deterministic_walk_through_a_simple/
October 21, 2024 at 02:41AM
https://old.reddit.com/r/NixOS/comments/1g8lr08/nixos_for_the_nonprogrammer/
October 21, 2024 at 12:45PM
https://old.reddit.com/r/NixOS/comments/1g8yu9m/announcing_determinate_nix_a_distribution_of_nix/
October 22, 2024 at 06:25AM
https://old.reddit.com/r/NixOS/comments/1g9i2vr/devenv_is_switching_nix_implementation_to_tvix/
October 23, 2024 at 08:10AM
https://old.reddit.com/r/NixOS/comments/1gacwmf/using_nix_to_fuzz_test_a_pdf_parser/
October 23, 2024 at 08:28PM
https://old.reddit.com/r/NixOS/comments/1gatci0/announcing_the_ekala_project_a_nix_inspired/
October 23, 2024 at 11:09AM
https://old.reddit.com/r/NixOS/comments/1gahaas/nix_at_work_flakehub_cache_and_private_flakes/
October 24, 2024 at 04:13PM
https://old.reddit.com/r/NixOS/comments/1gbg6ps/advice_on_further_hardening_nixos_kernel_memory/
October 25, 2024 at 10:04AM
https://old.reddit.com/r/NixOS/comments/1gbz7yv/the_future_of_software_is_nix/
October 26, 2024 at 09:23AM
https://old.reddit.com/r/NixOS/comments/1gcotmu/nix_team_member_suggests_removing_flakes_data/
October 26, 2024 at 06:10AM
https://old.reddit.com/r/NixOS/comments/1gckr76/finally_hopping_to_nixos_fulltime/
October 25, 2024 at 11:10AM
https://old.reddit.com/r/NixOS/comments/1gc0rhk/rewriting_my_entire_nix_configuration_any_tips/
October 26, 2024 at 01:52PM
https://old.reddit.com/r/NixOS/comments/1gcumn1/nix_lang_v2_lix_wiki/
October 28, 2024 at 07:00AM
https://old.reddit.com/r/NixOS/comments/1ge2rkb/domen_i_wont_be_contributing_to_nix_anymore_and/
October 28, 2024 at 09:37AM
https://old.reddit.com/r/NixOS/comments/1ge6mar/flakes_roadmap/
October 30, 2024 at 03:28AM
https://old.reddit.com/r/NixOS/comments/1gfjcb5/whats_going_on_with_nix_right_now_and_how_does_it/
October 30, 2024 at 02:03PM
https://old.reddit.com/r/NixOS/comments/1gfx95g/leaving_nix_dont_expect_anyone_to_care_but_you/
October 29, 2024 at 05:05PM
https://old.reddit.com/r/NixOS/comments/1gf9ii1/how_to_manage_a_fleet_of_nixos_desktop_machines/
October 31, 2024 at 06:27AM
https://old.reddit.com/r/NixOS/comments/1ggei8a/a_call_for_the_nix_team_to_present_a_unified/
October 31, 2024 at 12:50PM
https://old.reddit.com/r/NixOS/comments/1ggncla/the_darwin_sdks_have_been_updated_announcements/
November 01, 2024 at 03:50AM
https://old.reddit.com/r/NixOS/comments/1gh2joq/i_finally_gave_nixos_a_try_i_love_it_it_was_so/
November 01, 2024 at 05:24AM
https://old.reddit.com/r/NixOS/comments/1gh43pf/software_devs_how_do_you_set_up_and_organise_your/
October 28, 2024 at 12:43AM
https://old.reddit.com/r/NixOS/comments/1gdwjv1/simula_vr_will_be_using_nix/
November 02, 2024 at 09:07AM
https://old.reddit.com/r/NixOS/comments/1ghztoq/appreciation_post/
November 02, 2024 at 03:40PM
https://old.reddit.com/r/NixOS/comments/1gi8fxi/nix_community_survey_2024_results/
November 03, 2024 at 01:23AM
https://old.reddit.com/r/NixOS/comments/1giiagg/nixos_logo_keyboard/
November 03, 2024 at 08:41AM
https://old.reddit.com/r/NixOS/comments/1gir2nh/i_decided_to_go_for_nixos_as_i_plan_to_upgrade/
November 03, 2024 at 08:40PM
https://old.reddit.com/r/NixOS/comments/1gj6ep7/day_2_is_this_normal/
November 04, 2024 at 08:36AM
https://old.reddit.com/r/NixOS/comments/1gjilyx/first_time_dailydriving_linux_and_its_nixos_on_a/
November 04, 2024 at 11:21AM
https://old.reddit.com/r/NixOS/comments/1gjmpf9/i_made_this_nixos_in_minecraft_long_time_ago_for/
November 05, 2024 at 03:43PM
https://old.reddit.com/r/NixOS/comments/1gkkwr3/tip_use_githubs_search_to_solve_your_nix_problems/
November 04, 2024 at 03:18PM
https://old.reddit.com/r/NixOS/comments/1gjsdqf/pog_a_new_powerful_way_to_do_bash_scripts/
November 06, 2024 at 08:51AM
https://old.reddit.com/r/NixOS/comments/1gl312q/i_just_had_the_most_amazing_refactoring_session/
November 08, 2024 at 03:17AM
https://old.reddit.com/r/NixOS/comments/1gmg7rd/announcing_nixinfra_create_a_private_paas_on/
November 09, 2024 at 07:59AM
https://old.reddit.com/r/NixOS/comments/1gnd6hg/gotta_love_that_feeling/
November 09, 2024 at 10:40AM
https://old.reddit.com/r/NixOS/comments/1gngs6h/i_tried_nixos_for_1_week_here_are_my_thoughts_as/
November 09, 2024 at 12:02AM
https://old.reddit.com/r/NixOS/comments/1gn5arj/video_nixcon_2024_devenv_is_switching_to_tvix/
November 10, 2024 at 04:03AM
https://old.reddit.com/r/NixOS/comments/1gnz6up/whats_the_reason_behind_nix_language/
November 11, 2024 at 05:57AM
https://old.reddit.com/r/NixOS/comments/1gosrtr/amd_doesnt_provide_microcode_updates_for_your_cpu/
November 05, 2024 at 09:57AM
https://old.reddit.com/r/NixOS/comments/1gkctmn/nix_in_the_wild_bellroy/
November 05, 2024 at 02:47AM
https://old.reddit.com/r/NixOS/comments/1gk3x48/results_for_the_nix_steering_committee_election/
November 11, 2024 at 10:55AM
https://old.reddit.com/r/NixOS/comments/1gozxkg/opnix_native_secret_management_for_nixos_using/
November 12, 2024 at 01:15AM
https://old.reddit.com/r/NixOS/comments/1gpgru0/london_nix_user_group/
November 10, 2024 at 04:14PM
https://old.reddit.com/r/NixOS/comments/1gof4tq/my_experience_with_nixos_as_a_new_linux_user/
November 11, 2024 at 07:25AM
https://old.reddit.com/r/NixOS/comments/1gouqis/nixos_flake_for_zen_browser/
November 13, 2024 at 04:10PM
https://old.reddit.com/r/NixOS/comments/1gqrqzd/day_10_of_trying_to_plug_nixos/
November 15, 2024 at 12:55PM
https://old.reddit.com/r/NixOS/comments/1gs6h4b/opnix_agenix_inspired_tool_for_injecting/
November 14, 2024 at 11:01PM
https://old.reddit.com/r/NixOS/comments/1grqp09/tmux_theme/
November 10, 2024 at 07:45AM
https://old.reddit.com/r/NixOS/comments/1go3h6e/how_do_i_package_these_proprietary_vpn_binaries/
November 16, 2024 at 01:42AM
https://old.reddit.com/r/NixOS/comments/1gsjynt/i_tried_nix_for_two_weeks_here_is_my_3_am_ramble/
November 17, 2024 at 05:32AM
https://old.reddit.com/r/NixOS/comments/1gtdmp7/showcase_how_i_organized_my/
November 17, 2024 at 11:21AM
https://old.reddit.com/r/NixOS/comments/1gtlaoe/why_cant_hostname_be_used/
November 12, 2024 at 03:16PM
https://old.reddit.com/r/NixOS/comments/1gpyj37/nixos_best_practices/
November 14, 2024 at 12:53PM
https://old.reddit.com/r/NixOS/comments/1grezer/how_do_i_manage_a_nixdarwin_standalone_home/
November 18, 2024 at 06:54AM
https://old.reddit.com/r/NixOS/comments/1gu6ial/introducing_fhsenv_a_rust_devtool_to_install_nix/
November 18, 2024 at 10:47AM
https://old.reddit.com/r/NixOS/comments/1guc661/3_months_no_audio/
November 18, 2024 at 07:11AM
https://old.reddit.com/r/NixOS/comments/1gu6w7o/nixos_devops_internships/
November 19, 2024 at 01:29AM
https://old.reddit.com/r/NixOS/comments/1gutch4/switched_to_nixos/
November 19, 2024 at 10:40AM
https://old.reddit.com/r/NixOS/comments/1gv4hbb/flakes_explained_by_a_newbie_for_newbies/
November 19, 2024 at 01:48PM
https://old.reddit.com/r/NixOS/comments/1gv8z0s/the_unnecessarily_complicated_but_delightfully/
November 19, 2024 at 12:53AM
https://old.reddit.com/r/NixOS/comments/1gusw44/development_environments_on_nixosdevenv_are/
November 21, 2024 at 06:57AM
https://old.reddit.com/r/NixOS/comments/1gwi6ak/nixos_basic_guide/
November 21, 2024 at 11:01AM
https://old.reddit.com/r/NixOS/comments/1gwnao2/sc_we_want_to_speak_and_act_as_a_single_voice/
November 23, 2024 at 10:27AM
https://old.reddit.com/r/NixOS/comments/1gy68yq/my_girlfriend_taught_me_how_to_install_nixos_on/
November 21, 2024 at 03:09PM
https://old.reddit.com/r/NixOS/comments/1gwt6gb/adios_a_nix_module_system/
November 23, 2024 at 09:06AM
https://old.reddit.com/r/NixOS/comments/1gy4d8k/how_are_you_organizing_your_flakes_and_nix_files/
November 21, 2024 at 08:35PM
https://old.reddit.com/r/NixOS/comments/1gwzpbq/without_flakes/
November 25, 2024 at 05:39PM
https://old.reddit.com/r/NixOS/comments/1h0057r/worked_like_a_charm/
November 25, 2024 at 03:55AM
https://old.reddit.com/r/NixOS/comments/1gzh4yd/are_package_aliases_documented_anywhere/
November 20, 2024 at 04:50PM
https://old.reddit.com/r/NixOS/comments/1gw3hwh/how_do_you_decide_where_to_add_a_nixos_package_in/
November 25, 2024 at 01:19PM
https://old.reddit.com/r/NixOS/comments/1gzu8jp/should_i_configure_desktop_environments_like_in_a/
November 27, 2024 at 11:08AM
https://old.reddit.com/r/NixOS/comments/1h1c6oe/awm_i_love_nixos/
November 27, 2024 at 11:06AM
https://old.reddit.com/r/NixOS/comments/1h1c46z/tempted_to_give_up_on_nixos_maybe_someone_can/
November 27, 2024 at 08:00PM
https://old.reddit.com/r/NixOS/comments/1h1nc2a/nerdfonts_has_been_separated_into_individual_font/
November 27, 2024 at 12:26PM
https://old.reddit.com/r/NixOS/comments/1h1e0z2/create_a_nixos_based_private_cloud_with_nixinfra/
November 22, 2024 at 06:29AM
https://old.reddit.com/r/NixOS/comments/1gx93hh/should_i_use_nixos_i_have_fairly_niche_issues/
November 27, 2024 at 01:13AM
https://old.reddit.com/r/NixOS/comments/1h10be8/first_linux_distro_nixos_is_king/
November 30, 2024 at 03:39AM
https://old.reddit.com/r/NixOS/comments/1h3atop/wtf_is_with_the_font/
November 30, 2024 at 05:34AM
https://old.reddit.com/r/NixOS/comments/1h3cp74/whos_excited/
November 30, 2024 at 09:38AM
https://old.reddit.com/r/NixOS/comments/1h3htrc/nixos_2411_released/
December 01, 2024 at 04:37AM
https://old.reddit.com/r/NixOS/comments/1h42dw1/anyone_else_stuck_in_nix_purgatory/
December 01, 2024 at 08:06AM
https://old.reddit.com/r/NixOS/comments/1h46iw2/i_wish/
November 29, 2024 at 03:25AM
https://old.reddit.com/r/NixOS/comments/1h2jren/nixos_stable_or_not/
December 03, 2024 at 02:12AM
https://old.reddit.com/r/NixOS/comments/1h5k8qe/another_rate_my_config/
December 03, 2024 at 05:03PM
https://old.reddit.com/r/NixOS/comments/1h63nvw/my_guide_for_deploying_containers_on_nixos/
December 01, 2024 at 12:30PM
https://old.reddit.com/r/NixOS/comments/1h4cp15/aoc24_day_1_in_nix/
November 28, 2024 at 02:59AM
https://old.reddit.com/r/NixOS/comments/1h1tjgh/kde_just_doesnt_start/
November 29, 2024 at 06:08AM
https://old.reddit.com/r/NixOS/comments/1h2mjxa/can_anyone_tell_me_what_these_glitches_are_called/
November 30, 2024 at 04:19PM
https://old.reddit.com/r/NixOS/comments/1h3qgxj/how_to_run_a_declarative_nixos_vm_on_apple/
December 05, 2024 at 07:45AM
https://old.reddit.com/r/NixOS/comments/1h7c44m/advent_of_code_2024_in_nix_day_0103/
December 04, 2024 at 03:31PM
https://old.reddit.com/r/NixOS/comments/1h6unpn/custom_iso/
December 05, 2024 at 07:01AM
https://old.reddit.com/r/NixOS/comments/1h7b4e0/using_the_same_configuration_flake_on_nixos_and/
December 06, 2024 at 02:03AM
https://old.reddit.com/r/NixOS/comments/1h7y39x/nerd_font_symbols_no_longer_work_after_updating/
December 06, 2024 at 12:39AM
https://old.reddit.com/r/NixOS/comments/1h7wzgc/gui_focused_nixos_distro/
December 06, 2024 at 04:09AM
https://old.reddit.com/r/NixOS/comments/1h7zxxp/how_do_people_do_developer_environments/
December 07, 2024 at 10:02AM
https://old.reddit.com/r/NixOS/comments/1h8y75m/how_do_you_define_shorthands_in_nix/
December 08, 2024 at 07:56AM
https://old.reddit.com/r/NixOS/comments/1h9lstt/from_nix_to_eos/
December 08, 2024 at 05:50AM
https://old.reddit.com/r/NixOS/comments/1h9j8sn/choices_for_distributing_a_nix_built_package_to/
December 08, 2024 at 05:45PM
https://old.reddit.com/r/NixOS/comments/1h9ynw7/replacing_calls_to_binbash_in_a_nix_package/
December 09, 2024 at 10:42PM
https://old.reddit.com/r/NixOS/comments/1havtw7/nixos_documentation_and_contributing_to_it/
December 10, 2024 at 05:39AM
https://old.reddit.com/r/NixOS/comments/1hb1y5v/nixos_2411_nvidia_wayland_steam/
December 10, 2024 at 09:01AM
https://old.reddit.com/r/NixOS/comments/1hb6goa/you_can_now_create_a_more_resilient_nixos_private/
December 10, 2024 at 06:52AM
https://old.reddit.com/r/NixOS/comments/1hb3h8r/anyone_got_hibernate_to_work_consistently_on/
December 12, 2024 at 04:03AM
https://old.reddit.com/r/NixOS/comments/1hcjmep/nixos_as_desktop_for_family_power_use_seems/
December 12, 2024 at 09:50AM
https://old.reddit.com/r/NixOS/comments/1hcqsxa/python_on_nixos/
December 10, 2024 at 01:21AM
https://old.reddit.com/r/NixOS/comments/1haxygg/how_do_you_keep_some_files_hidden_if_you_want/
December 13, 2024 at 07:24AM
https://old.reddit.com/r/NixOS/comments/1hdel9u/oc_announcing_ucodenix_130_nix_flake_providing/
December 13, 2024 at 05:09AM
https://old.reddit.com/r/NixOS/comments/1hdbu5s/help_nixos_uses_more_than_70_cpu_on_idle/
December 13, 2024 at 11:09AM
https://old.reddit.com/r/NixOS/comments/1hdjpsv/nixos_router/
December 13, 2024 at 02:30PM
https://old.reddit.com/r/NixOS/comments/1hdo66j/3d_printed_keychain_ornament/
December 14, 2024 at 11:08AM
https://old.reddit.com/r/NixOS/comments/1he9y9h/guide_to_setup_atuin_on_nixos/
December 14, 2024 at 12:47PM
https://old.reddit.com/r/NixOS/comments/1hec3tf/is_this_normal/
December 15, 2024 at 07:58AM
https://old.reddit.com/r/NixOS/comments/1hevijo/the_nixos_rabbithole_is_deep_but_damn_it_feels/
December 15, 2024 at 03:46PM
https://old.reddit.com/r/NixOS/comments/1hf5svw/nixos_resuscitated_a_2012_macbook_air_this_thing/
December 15, 2024 at 11:37AM
https://old.reddit.com/r/NixOS/comments/1hf0f3c/the_more_complex_my_nixos_setup_becomes_the_more/
December 16, 2024 at 10:16AM
https://old.reddit.com/r/NixOS/comments/1hfpipw/i_think_im_too_stupid_to_use_nixos/
December 17, 2024 at 07:22AM
https://old.reddit.com/r/NixOS/comments/1hgcxsl/shoutout_to_stylix_for_giving_consistent_theming/
December 17, 2024 at 03:16PM
https://old.reddit.com/r/NixOS/comments/1hgnqq6/gotta_love_this_latest_kde_feature/
December 18, 2024 at 06:20AM
https://old.reddit.com/r/NixOS/comments/1hh2kvo/its_official_i_just_deleted_my_arch_dual_boot_and/
December 19, 2024 at 10:51AM
https://old.reddit.com/r/NixOS/comments/1hi01xz/i_was_today_years_old_when_i_realized_this_is/
debug
commandDecember 19, 2024 at 01:04PM
https://old.reddit.com/r/NixOS/comments/1hi32yk/offical_docker_cli_uses_nix_to_install_packages/
December 19, 2024 at 05:24AM
https://old.reddit.com/r/NixOS/comments/1hhstg6/best_ways_to_manage_python_packages_with_lowest/
December 20, 2024 at 11:22AM
https://old.reddit.com/r/NixOS/comments/1hirgu9/setting_up_a_production_nginx_server_on_nixos/
December 17, 2024 at 04:57AM
https://old.reddit.com/r/NixOS/comments/1hga1i3/nix_in_the_wild_ockam/
December 21, 2024 at 09:11PM
https://old.reddit.com/r/NixOS/comments/1hjruq1/graphics_corruption_on_kernel_6125_and_up/
December 22, 2024 at 06:25AM
https://old.reddit.com/r/NixOS/comments/1hjzgmh/is_nixos_serious_about_security/
December 21, 2024 at 04:48PM
https://old.reddit.com/r/NixOS/comments/1hjnich/curiousityquestion_staging_not_being_merged_to/
December 17, 2024 at 11:37PM
https://old.reddit.com/r/NixOS/comments/1hgwma3/taming_cloud_infrastructure_with_nixos_terraform/
December 24, 2024 at 05:43AM
https://old.reddit.com/r/NixOS/comments/1hldt8s/satire_does_the_nixos_installer_increase_my_drive/
December 24, 2024 at 12:52PM
https://old.reddit.com/r/NixOS/comments/1hlm9kd/merry_nixos/
December 24, 2024 at 05:12PM
https://old.reddit.com/r/NixOS/comments/1hlqsju/can_somome_tell_me_why_this_is_hapening_when_i/
December 23, 2024 at 08:18AM
https://old.reddit.com/r/NixOS/comments/1hkr6ir/flake_update_introduced_the_recommended/
December 25, 2024 at 11:26AM
https://old.reddit.com/r/NixOS/comments/1hm75r7/some_nixosnix_learning_resources_that_ive_found/
December 26, 2024 at 08:41AM
https://old.reddit.com/r/NixOS/comments/1hms5y6/support_for_declaratively_installing_caddy_with/
December 26, 2024 at 08:22AM
https://old.reddit.com/r/NixOS/comments/1hmrrb5/a_simple_qualityoflife_tip_for_colored_man_pages/
December 26, 2024 at 01:24PM
https://old.reddit.com/r/NixOS/comments/1hmyg1z/ghostty_has_been_released_as_a_nix_flake_im/
December 28, 2024 at 05:00AM
https://old.reddit.com/r/NixOS/comments/1ho57k2/does_anyone_actually_care_about_ghostty/
December 28, 2024 at 04:38AM
https://old.reddit.com/r/NixOS/comments/1ho4v3z/6_month_nixos_milestone/
December 28, 2024 at 08:23AM
https://old.reddit.com/r/NixOS/comments/1ho92pe/nixos_mentioned_s2s2s2_wes_roth_video/
December 28, 2024 at 01:35AM
https://old.reddit.com/r/NixOS/comments/1ho2csq/why_do_you_choose_nixos_as_your_main_distrio/
December 31, 2024 at 03:58AM
https://old.reddit.com/r/NixOS/comments/1hqd9sg/manjaro_plasma_can_adjust_stop_charging_at_but/
December 30, 2024 at 11:13AM
https://old.reddit.com/r/NixOS/comments/1hpuw39/some_articles_on_nixpkgs_overlays_i_put_together/
December 31, 2024 at 07:28AM
https://old.reddit.com/r/NixOS/comments/1hqgypb/am_i_compatible_with_nixos/
December 31, 2024 at 03:34PM
https://old.reddit.com/r/NixOS/comments/1hqqssz/is_anyone_working_on_adding_zen_browser_to_nix/
December 31, 2024 at 10:16AM
https://old.reddit.com/r/NixOS/comments/1hqkkfz/z0alplistmanager_a_new_userfriendly_macos/
January 02, 2025 at 08:20AM
https://old.reddit.com/r/NixOS/comments/1hrxfhn/my_nixos_setup_for_2025/
December 28, 2024 at 02:17AM
https://old.reddit.com/r/NixOS/comments/1ho2wth/switching_to_nixos/
December 31, 2024 at 04:27AM
https://old.reddit.com/r/NixOS/comments/1hqdpoi/problem_with_steam/
December 30, 2024 at 06:11AM
https://old.reddit.com/r/NixOS/comments/1hpo0zc/how_to_hide_specific_parts_of_my_config/
December 31, 2024 at 01:48AM
https://old.reddit.com/r/NixOS/comments/1hqbiel/nixos_beginner/
January 03, 2025 at 04:44AM
https://old.reddit.com/r/NixOS/comments/1hslnq7/use_cachix_binary_cache_for_hyprland_ghostty_and/
January 03, 2025 at 05:53PM
https://old.reddit.com/r/NixOS/comments/1ht3g2m/foreman_deployment/
January 05, 2025 at 12:39AM
https://old.reddit.com/r/NixOS/comments/1htysnv/i_have_packaged_amd_uprof_50/
January 05, 2025 at 01:42PM
https://old.reddit.com/r/NixOS/comments/1hudv3c/lix_installer_vs_determinate_systems_installer/
January 06, 2025 at 12:04PM
https://old.reddit.com/r/NixOS/comments/1hv3v9l/the_start_is_painful_what_are_the_best_beginner/
January 06, 2025 at 04:27PM
https://old.reddit.com/r/NixOS/comments/1hvae5l/using_a_github_actions_pipeline_for_cicd_to_nixos/
January 06, 2025 at 08:17PM
https://old.reddit.com/r/NixOS/comments/1hvfmg4/why_im_switching_to_nixos_after_25_years_of_linux/
January 07, 2025 at 12:21PM
https://old.reddit.com/r/NixOS/comments/1hvwk3b/share_your_nixoshomemanager_quality_of_life_tips/
January 01, 2025 at 07:11AM
https://old.reddit.com/r/NixOS/comments/1hr1sfm/my_first_configurationnix/
January 07, 2025 at 07:12PM
https://old.reddit.com/r/NixOS/comments/1hw6bmu/is_stable_usually_stable/
January 08, 2025 at 07:52AM
https://old.reddit.com/r/NixOS/comments/1hwjjkw/garnix_is_so_good_its_suprising_its_not_the/
January 07, 2025 at 10:52PM
https://old.reddit.com/r/NixOS/comments/1hwardd/nixos_best_learning_resources/
January 08, 2025 at 10:42PM
https://old.reddit.com/r/NixOS/comments/1hx3uqk/just_recently_hit_my_1000th_generation_what_about/
January 09, 2025 at 09:45AM
https://old.reddit.com/r/NixOS/comments/1hxebkm/uv2nix_build_develop_python_projects_using_uv/
January 09, 2025 at 11:36AM
https://old.reddit.com/r/NixOS/comments/1hxgugt/how_do_folks_keep_a_cheat_sheet_of/
January 09, 2025 at 12:36PM
https://old.reddit.com/r/NixOS/comments/1hxiad0/tips_for_working_with_nixpkgs_locally_and_why_you/
January 10, 2025 at 01:36AM
https://old.reddit.com/r/NixOS/comments/1hxyenn/should_we_advertise_on_rlinux_gaming/
January 10, 2025 at 06:10PM
https://old.reddit.com/r/NixOS/comments/1hyhsy3/my_literate_system_configuration_using_emacs_nixos/
January 12, 2025 at 01:46AM
https://old.reddit.com/r/NixOS/comments/1hzgxns/fully_declarative_flatpak_management_on_nixos/
January 11, 2025 at 06:26PM
https://old.reddit.com/r/NixOS/comments/1hz8y7d/customizing_gnome_with_nix_and_home_manager/
January 13, 2025 at 03:35PM
https://old.reddit.com/r/NixOS/comments/1i0nw2l/neovim_editions/
January 13, 2025 at 03:27PM
https://old.reddit.com/r/NixOS/comments/1i0npls/hello_nixos_folks_help_me_never_touch_grass_again/
January 14, 2025 at 07:58PM
https://old.reddit.com/r/NixOS/comments/1i1lkxx/planet_nix_2025_speakers/
January 15, 2025 at 05:14AM
https://old.reddit.com/r/NixOS/comments/1i1udjo/i_provide_you_examples_to_hardening_your_system/
January 15, 2025 at 09:29AM
https://old.reddit.com/r/NixOS/comments/1i1yl2k/gaming_on_nixos_is_just_pristine/
January 15, 2025 at 06:45AM
https://old.reddit.com/r/NixOS/comments/1i1vmuh/nixos_and_actually_portable_executables/
January 15, 2025 at 06:59PM
https://old.reddit.com/r/NixOS/comments/1i2bnqp/looking_for_volunteers_creating_a_nixvim/
January 15, 2025 at 09:22AM
https://old.reddit.com/r/NixOS/comments/1i1yfix/a_possible_redirect_from_nixoswiki_wikinixosorg/
January 17, 2025 at 02:03AM
https://old.reddit.com/r/NixOS/comments/1i3as84/ignore_template_today_i_presented_nixos_and_its/
Last updated: Jan 18 2025 at 04:45 UTC