Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/viperml/dotfiles
- Owner: viperML
- License: eupl-1.2
- Created: 2021-03-26T18:04:54.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2025-01-14T09:00:27.000Z (10 days ago)
- Last Synced: 2025-01-18T03:04:12.303Z (6 days ago)
- Topics: dotfiles, gentoo, neovim, nix, nix-dotfiles, nix-flake
- Language: Nix
- Homepage:
- Size: 25.1 MB
- Stars: 165
- Watchers: 5
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- License: license
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
];
}
```