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