flake: Added basicShell template

This commit is contained in:
Giulio De Pasquale 2023-02-17 09:04:32 -08:00
parent 483a3d6d65
commit aa6dd43783

View File

@ -8,8 +8,7 @@
};
};
outputs =
inputs@{ self, nixpkgs, nixos-unstable, home-manager }:
outputs = { self, nixpkgs, nixos-unstable, home-manager }:
let
sysLinuxX64 = "x86_64-linux";
sysDarwin = "aarch64-darwin";
@ -78,6 +77,7 @@
roles = [ "gnome" ];
};
};
homeConfigurations = {
giulioMac = utilsDarwin.user.mkHMUser {
name = "giulio";
@ -93,5 +93,10 @@
};
giulioX64NoSSH = utilsLinuxX64.user.mkHMUser { name = "giulio"; };
};
defaultTemplate = self.templates.basicShell;
templates = {
basicShell.path = ./templates/basicShell;
};
};
}