Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/viperml/dotfiles

Personal configuration files for my PC
https://github.com/viperml/dotfiles

dotfiles gentoo neovim nix nix-dotfiles nix-flake

Last synced: 5 days ago
JSON representation

Personal configuration files for my PC

Awesome Lists containing this project

README

        

viperML/dotfiles

# 🗒 About

These are my personal configuration files for my Linux and Windows machines. Feel free to grab anything that you find interesting.

# 📦 Exported packages

Run packages directly with:

```console
nix run github:viperML/dotfiles#name
```

Or install from the `packages` output. For example:

```nix
# flake.nix
{
inputs.viperML-dotfiles.url = "github:viperML/dotfiles";

# Override my nixpkgs
inputs.viperML-dotfiles.inputs.nixpkgs.follows = "nixpkgs";
}

# configuration.nix
{ pkgs, inputs, ... }: {
environment.systemPackages = [
inputs.viperML-dotfiles.packages.${pkgs.system}.name
];
}
```