Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 :)
- Host: GitHub
- URL: https://github.com/hype08/nix-config
- Owner: hype08
- Created: 2024-11-02T18:30:33.000Z (16 days ago)
- Default Branch: main
- Last Pushed: 2024-11-09T20:24:26.000Z (9 days ago)
- Last Synced: 2024-11-09T21:24:37.912Z (9 days ago)
- Topics: nixos, nixos-config, thinkpad-t480s
- Language: Nix
- Homepage:
- Size: 5.56 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.