Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Evertras/simple-homemanager
A practical guide to getting started with home manager with flakes and all that 2024 goodness.
https://github.com/Evertras/simple-homemanager
flakes home-manager nix
Last synced: 2 months ago
JSON representation
A practical guide to getting started with home manager with flakes and all that 2024 goodness.
- Host: GitHub
- URL: https://github.com/Evertras/simple-homemanager
- Owner: Evertras
- License: mit
- Created: 2024-02-06T11:32:17.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-08-02T22:31:29.000Z (5 months ago)
- Last Synced: 2024-08-03T00:33:31.088Z (5 months ago)
- Topics: flakes, home-manager, nix
- Language: Nix
- Homepage:
- Size: 161 KB
- Stars: 88
- Watchers: 5
- Forks: 12
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Simple start with Nix Home Manager with Flakes
**Do not click around. Read this guide in order. Do all the steps. You'll thank
me later. See bottom of this readme for the starting link.**Want to control your entire Linux user space in a declarative, highly
configurable, highly reproducible manner that you can take with you from machine
to machine without ever worrying about how to rebuild it? Did you try to do that
with Nix's Home Manager and hated your life? Read on.## What is this?
I like Nix. A lot. I think you will too. But I hated getting started with it.
The documentation for Nix is a headache to wade through and understand in one
go. Piecing together random blog posts diving into all the flashy fun cool stuff
is painful, and many of them are old/stale. Simple, practical starter guides for
using [home manager](https://github.com/nix-community/home-manager) were
surprisingly difficult to find. Maybe I was just missing them.Regardless, **this is the guide I wish I had when I started**. All I wanted was
a foundation to start playing with and build on. So here you go: a low-nonsense
guide to getting started with Home Manager with Flakes.## Start the journey
### Assumptions
I assume you are running Linux of some sort. This may work on Mac too, but I
haven't tried it.I assume you are NOT running NixOS. If you are, you may want to read a little
more carefully when it comes to installing Home Manager. The easiest way to
install it at that point IMO is just adding it as a package to your NixOS
install. After Home Manager is installed, it should all be the same anyway.I do not assume you have any experience with Nix.
I assume you have some minimal programming knowledge. If you know what a
"string" and a "function" are, you're probably fine.### Please read this bit
This is not intended to replace the [official documentation of Nix itself](https://nix.dev/),
[Home Manager](https://nix-community.github.io/home-manager/),
[nixpkgs](https://nixos.org/manual/nixpkgs/stable/), etc. This is meant to be
an entry point to get a foundation, so that you can understand what you're
looking at in the future.I am not going to give you deep explanations of why certain things are the way
they are. I am not going to give you fifty different ways to do something. The
rabbit holes of Nix go deep. **Do not stray from the path** until you have
something minimal working, and then I'll show you how to start tinkering. Once
you have some minimal tinkering under your belt, everything else in Nix will
make so much more sense and you can explore all you want!If you see code, don't copy/paste it. Type it yourself. _Neuroscience_. You'll
learn it a lot quicker that way.### Let's go!
Ok, ready? **[Let's go! (01-install.md)](01-install.md)**.