Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hype08/nix-config

Learning NixOS on my Thinkpad T480s :)
https://github.com/hype08/nix-config

nixos nixos-config thinkpad-t480s

Last synced: 8 days ago
JSON representation

Learning NixOS on my Thinkpad T480s :)

Awesome Lists containing this project

README

        

# My NixOS config

If you want to follow along, clone this repository on an install of NixOS! Be warned, no promises of things working out of the box.
Although, things _are_ quite rudimentary at the moment so it should be easy to follow.

## Requirements

- Must be installed and running on NixOS.

## Setup

In `/etc/nixos/configuration.nix`, point to where you will be developing your NixOS project.

```nix
{ config, pkgs, ... }:
{
imports = [
"$HOME/path/to/nix-config/hosts/default/config.nix"
];
}
```

Next, edit your hardware in flake.nix. I am using a Thinkpad T480s, so you'll want to look for your machine here https://github.com/NixOS/nixos-hardware.

I'll strive to add more setup notes as things progress.