Skip to content

Attempt at replacing dotfiles with as much pure nixos as possible

License

Notifications You must be signed in to change notification settings

Nekroze/NIXkor.nix

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

66 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NIXkor

An attempt at replacing dotfiles with as much pure NixOS as possible.

Usage

This git repository is designed to be imported in the Nix language and called as a function to generate your variant of the NixOS configuration.

Example Using Default Values

{ pkgs, ... }:
let
  NIXkor = pkgs.fetchFromGitHub {
    owner = "Nekroze";
    repo = "NIXkor.nix";
    # use whatever is the latest commit hash
    rev = "7f7bdfc1c2131fe55094ff288069d5936d28c895";
    # update this hash when builds fail when updating rev.
    sha256 = "0jp7qq02ly9wiqbgh5yamwd31ah1bbybida7mn1g6qpdijajf247";
  };
in {
  imports = [
    ./hardware-configuration.nix
    (NIXkor {})
  ];
}

About

Attempt at replacing dotfiles with as much pure nixos as possible

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages