nixos-configuration

Open-source projects categorized as nixos-configuration
Language: + Nix + Lua

Top 23 nixos-configuration Open-Source Projects

  • dotfiles

    And I say hey, what's going on? (by hlissner)

  • Project mention: Michigan GOP infighting leads to actual fight between Karamo, DePerno ba... | /r/TRUTHsocialWatch | 2023-07-10

    I was hoping it was going to morph into “By the power invested in me, by the POWER OF GREYSKULL!!! AND SO I CRY SOMETIMES…”

  • nixos-config

    Nix configuration for macOS / NixOS with starter templates, step-by-step guides, and more ✨ (by dustinlyons)

  • Project mention: Going declarative on macOS with Nix and Nix-Darwin | news.ycombinator.com | 2024-01-15

    I’ve been using Nix directly on MacOS with minimal issues for a few years now. Works great.

    I hate using docker on Mac and have since replaced it with flakes and devenv.

    My configuration with a step by step guide (600+ stars): https://github.com/dustinlyons/nixos-config

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • digga

    A flake utility library to craft shell-, home-, and hosts- environments.

  • nix-config

    :space_invader: NixOS configuration

  • nix-config

    ❄️ my nix config for both desktops(NixOS+macOS) and homelab servers(NixOS). (by ryan4yin)

  • Project mention: I finally understand the "I use Arch, btw" thing | /r/archlinux | 2023-08-22

    I've been trying to daily drive Linux for the past 2 months or so. Started out on EndeavourOS and didn't had any problems until I tried to make it useable in secure boot (I really want to play Valorant and not bother each time switching secure boot in bios) and failed miserably due to a combination of lack of knowledge and stupidity. I briefly tried NixOS and while this config is beautiful, I just didn't enjoy the way NixOs is customized.

  • crystal

    nix dotfiles for chilly people (by chadcat7)

  • dotfiles

    My NixOS dotfiles (by Mic92)

  • Project mention: My First Impressions of Nix | news.ycombinator.com | 2023-06-19
  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  • dotfiles

    pls help (by nuxshed)

  • nixos-config

    KISS NixOS configuration based on Flakes & flake-parts (supports macOS too) (by srid)

  • Project mention: Starship.rs: minimal, fast prompt for any shell | news.ycombinator.com | 2024-01-25

    If you use home-manager, installing starship is as simple as adding `programs.starship.enable = true;`.

    https://github.com/srid/nixos-config/blob/master/home/starsh...

    Incidentally, starship also gives a visual indication of whether you are in the nix shell or not, which is pretty handy when using direnv:

    https://nixos.asia/en/direnv

  • nix-config

    My personal NixOS config (by lovesegfault)

  • Project mention: Fastest way to set up an k8s environment ? | /r/kubernetes | 2023-05-31
  • nixflakes

    My nixdots, but flaked.

  • Project mention: Deploying config dotfiles for liveuser during ISO creation | /r/NixOS | 2023-12-09

    At the bottom of my flake you can see I'm doing exactly as you say but with nixos as my user.

  • dconf2nix

    :feet: Convert dconf files (e.g. GNOME Shell) to Nix, as expected by Home Manager [maintainer=@jtojnar]

  • Project mention: I want to like NixOS but... I can't and I need some help | /r/NixOS | 2023-07-12

    On that page, they also have a link to a tool to allow you to convert existing dconf databases to nix expressions.

  • .dots

    just my .dotfiles

  • Project mention: Fish and nix develop question | /r/NixOS | 2023-07-21

    I have a wrapper function that just maps to dev to make life easier: https://github.com/dmadisetti/.dots/blob/template/dot/config/fish/functions/develop.fish

  • nixos

    My NixOS Configurations

  • Project mention: miasma | /r/neovim | 2023-06-16

    I don't know. Have been using colorbuddy for ages now and it has always done exactly what I want. I don't need the "instant reaload" that lush advertices, doing :source on the colorscheme file, does the same for me to preview changes instantly. This is my theme, in case you need something to start with: - https://github.com/pinpox/nixos/blob/main/home-manager/modules/nvim/lua/config/pinpox-colors.lua

  • nixfiles

    My NixOS configuration and assorted other crap.

  • Project mention: My First Impressions of Nix | news.ycombinator.com | 2023-06-19
  • system

    My system configuration (by infinisil)

  • nix-config

    My personal nix config (by bbigras)

  • nyx

    ⚙️Nix[OS] Configuration

  • veritas

    @davidtwco's personal mono-repo - containing the declarative configuration of servers, desktops and laptops - including dotfiles; a collection of packages; a static site generator and source of "davidtw.co".

  • nixos-config

    My Personal Nix/NixOS Configuration. (by Baitinq)

  • Project mention: My First Impressions of Nix | news.ycombinator.com | 2023-06-19
  • vuizvui

    Nix(OS) expressions used by the OpenLab and its members

  • Project mention: $Home, Not So Sweet $Home | news.ycombinator.com | 2023-08-16

    For games, I think it's even worse on GNU/Linux systems, since most game developers mainly target Windows and sometimes completely ignore conventions for other platforms (possibly since some game engines have that "Build for Linux" button).

    This also applies to game engines and their own conventions. For example Unity has Application::persistentDataPath[1], which uses $XDG_CONFIG_HOME (still a bit meh, since I wouldn't treat savefiles as "config", but at least some convention). However, some games tend to write those into Application::dataPath[1] (or even other random directories they see fit), which is supposed to be read-only and could possibly be outside of $HOME.

    Fortunately the single one advantage of antivirus software out there seems to be that the above seems to break with some AV, so developers either tell their players to disable AV or they simply fix the issue. I made countless bug reports on this issue and so far it exclusively got fixed because of AV, so I'm using that as an argument for future reports.

    While at least most of the Unity games I've packaged seem to adhere to these conventions, other games and game engines are a mixed bag and I've seen games dumping their stuff into $PWD to games writing to Windows paths (eg. /home/foo/SomeVendor\Somegame).

    Patching these games is also very tedious, since some of them tend to get updates, so patching needs to be done in a way to be forward-compatible.

    For example here is a patcher I wrote to get Factorio to adhere to XDG:

    https://github.com/openlab-aux/vuizvui/blob/4690494feee20a62...

    Here is an example for patching a Unity3d game that writes to Application::dataPath:

    https://github.com/openlab-aux/vuizvui/blob/4690494feee20a62...

    [1]: https://docs.unity3d.com/ScriptReference/Application-persist...

    [2]: https://docs.unity3d.com/ScriptReference/Application-dataPat...

  • nix-config

    ❄️ My nix config and dotfiles (by oddlama)

  • Project mention: Caddy plugins on NixOS | /r/NixOS | 2023-06-12

    You can also override the caddy package to inject modules into the build process without needing xcaddy: See https://github.com/oddlama/nix-config/blob/b5d2d31b6903f5829490513c1297e7ea1e54899c/pkgs/caddy.nix

  • dotfiles

    ❄️ My dotfiles for NixOS and macOS as a Nix flake. Neovim, Fish shell, Wezterm, etc. (by mrjones2014)

  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020).

nixos-configuration related posts

Index

What are some of the best open-source nixos-configuration projects? This list will help you:

Project Stars
1 dotfiles 1,517
2 nixos-config 1,038
3 digga 980
4 nix-config 747
5 nix-config 581
6 crystal 555
7 dotfiles 447
8 dotfiles 380
9 nixos-config 360
10 nix-config 295
11 nixflakes 209
12 dconf2nix 205
13 .dots 165
14 nixos 159
15 nixfiles 149
16 system 150
17 nix-config 142
18 nyx 135
19 veritas 125
20 nixos-config 124
21 vuizvui 104
22 nix-config 102
23 dotfiles 92

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com