Skip to content

Instantly share code, notes, and snippets.

@SCOTT-HAMILTON
Created May 23, 2020 21:18
Show Gist options
  • Save SCOTT-HAMILTON/a82bb8a0d93c208c744898cfb07973e9 to your computer and use it in GitHub Desktop.
Save SCOTT-HAMILTON/a82bb8a0d93c208c744898cfb07973e9 to your computer and use it in GitHub Desktop.
let
home-manager = builtins.fetchGit {
url = "https://github.com/rycee/home-manager.git";
rev = "dd94a849df69fe62fe2cb23a74c2b9330f1189ed"; # CHANGEME
ref = "release-18.09";
};
# nur-no-pkgs = import (builtins.fetchTarball {
# url = "https://github.com/nix-community/NUR/archive/master.tar.gz";
# sha256 = "1jfgd9mhrbdxkkdfnwwfsnnqfbxi2vj1561qif61kikw0nnj2i2r" ;
# }) {};
shamilton = import (builtins.fetchTarball {
url = "https://github.com/SCOTT-HAMILTON/nur-packages-template/archive/master.tar.gz";
sha256 = "0mwvpxkzq7gb209slmrxykgdswsnqqssqvjp5hdx19n77p110x36";
}) {};
in
{
imports = [
# (import "${home-manager}/nixos")
# nur-no-pkgs.repos.shamilton.modules.day-night-plasma-wallpapers
shamilton.modules.day-night-plasma-wallpapers
];
nixpkgs.config.allowUnfree = true;
programs.git = {
enable = true;
userName = "SCOTT-HAMILTON";
userEmail = "sgn.hamilton@protonmail.com";
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment