mirror of https://github.com/wlcx/home.git
flake: expose profiles as flake output, fmt
This commit is contained in:
parent
f28b42d23b
commit
70faca076a
|
@ -26,6 +26,7 @@
|
|||
})
|
||||
];
|
||||
in (rec {
|
||||
profiles = import ./home/profiles.nix;
|
||||
lib = {
|
||||
mkHome = {
|
||||
profiles,
|
||||
|
@ -48,9 +49,7 @@
|
|||
};
|
||||
|
||||
# Standalone home-manager configurations
|
||||
homeConfigurations = let
|
||||
profiles = import ./home/profiles.nix;
|
||||
in {
|
||||
homeConfigurations = {
|
||||
boron = lib.mkHome {
|
||||
system = "aarch64-darwin";
|
||||
profiles = with profiles; [default dev sensitive mac docker aws];
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
{pkgs, ...}: {
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
package = pkgs.vscodium;
|
||||
|
|
Loading…
Reference in New Issue