Compare commits
3 Commits
608fd46eb4
...
4cc4067510
Author | SHA1 | Date | |
---|---|---|---|
|
4cc4067510 | ||
|
1c8c86bfa3 | ||
|
9e67978f6e |
@ -32,7 +32,11 @@
|
||||
};
|
||||
|
||||
wrapUtils = { pkgs, unstable, system }:
|
||||
pkgs.lib.makeScope pkgs.newScope (self: {
|
||||
let
|
||||
inherit (pkgs.lib) makeScope;
|
||||
inherit (pkgs) newScope;
|
||||
in
|
||||
makeScope newScope (self: {
|
||||
inherit nixpkgs home-manager nixos-unstable;
|
||||
user = self.callPackage ./lib/user.nix { };
|
||||
host = self.callPackage ./lib/host.nix { };
|
||||
|
@ -3,7 +3,7 @@
|
||||
{
|
||||
mkHost = { name, users, roles ? [ ], imports ? [ ] }:
|
||||
let
|
||||
mkRole = role: import (../roles + "/${role}.nix");
|
||||
mkRole = role: pkgs.callPackage (../roles + "/${role}.nix") { };
|
||||
|
||||
users_mod = (map
|
||||
(u:
|
||||
|
@ -2,7 +2,7 @@
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "Giulio De Pasquale";
|
||||
userEmail = "depasquale+git@giugl.io";
|
||||
userEmail = "git@depasquale.giugl.io";
|
||||
extraConfig = {
|
||||
filter."lfs" = {
|
||||
process = "git-lfs filter-process";
|
||||
|
Loading…
Reference in New Issue
Block a user