Compare commits

..

No commits in common. "4cc40675102de9a21cc22c373bff8c239ceb6afa" and "608fd46eb4986b977d7873517b1a88bc4e31e62a" have entirely different histories.

3 changed files with 3 additions and 7 deletions

View File

@ -32,11 +32,7 @@
};
wrapUtils = { pkgs, unstable, system }:
let
inherit (pkgs.lib) makeScope;
inherit (pkgs) newScope;
in
makeScope newScope (self: {
pkgs.lib.makeScope pkgs.newScope (self: {
inherit nixpkgs home-manager nixos-unstable;
user = self.callPackage ./lib/user.nix { };
host = self.callPackage ./lib/host.nix { };

View File

@ -3,7 +3,7 @@
{
mkHost = { name, users, roles ? [ ], imports ? [ ] }:
let
mkRole = role: pkgs.callPackage (../roles + "/${role}.nix") { };
mkRole = role: import (../roles + "/${role}.nix");
users_mod = (map
(u:

View File

@ -2,7 +2,7 @@
programs.git = {
enable = true;
userName = "Giulio De Pasquale";
userEmail = "git@depasquale.giugl.io";
userEmail = "depasquale+git@giugl.io";
extraConfig = {
filter."lfs" = {
process = "git-lfs filter-process";