Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eryoneta/nixos-config
My first dive into Linux territory. Yep, straight into one of the hardest ones.
https://github.com/eryoneta/nixos-config
home-manager home-manager-config nix nix-flake nixos nixos-config nixos-configuration
Last synced: about 1 month ago
JSON representation
My first dive into Linux territory. Yep, straight into one of the hardest ones.
- Host: GitHub
- URL: https://github.com/eryoneta/nixos-config
- Owner: Eryoneta
- Created: 2024-06-21T02:56:21.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-10-10T17:47:39.000Z (about 1 month ago)
- Last Synced: 2024-10-10T23:23:13.879Z (about 1 month ago)
- Topics: home-manager, home-manager-config, nix, nix-flake, nixos, nixos-config, nixos-configuration
- Language: Nix
- Homepage:
- Size: 268 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NixOS Configuration
Based on Linux, NixOS is quite a unique distro. It allows for a almost complete control over the entire system with the use of a single configuration file(That get a bit too big, so you inevitably end up breaking it into parts, of course) and that brings a unique possibility: Recreating an entire OS with only a configuration file(And Internet access).
My NixOS is my first take on Linux. Not a conventional way to get familiar with the ecosystem, but I hope it pays well in the end. An entire OS, configured __exactly__ how I want it to!
### Some Achievements
- Flakes: A declarative way of defining the system's inputs and outputs. It allows my system to have many different packages as inputs and many different hosts as outputs. Also, it pins the exact commit for each input, allowing for a precise recreation of the system, which is nice.
- _Home Manager_ both as standalone and as a NixOS module: It allows for quick edits on dotfiles (`home-manager switch`) without recreating the system, but it also allows the newly recreated system (`sudo nixos-rebuild switch`) to manage the home folder.
- Multiple hosts and users, and a easy way to pair them. In theory.
- Multiple inputs, allowing for different packages: Some packages can be the latest version(_unstable_), others can be unchanging until the system upgrades(_stable_).
- AutoUpgrade! Total control when and how the system upgrades!
- Some packages can be automatically updated, others can be only when required (Manual update).
- Might document it all when I finish tinkering. The entire OS. Every option.### Some Details
- My dotfiles, secrets, and some files are outside this repo. Privacy and all that.
- Some stuffs might not work, idk. I'm learning.