changed up

This commit is contained in:
Bryan Ramos 2024-05-09 11:56:25 -04:00
parent 1d170da221
commit 6a06793716
3 changed files with 11 additions and 17 deletions

View file

@ -22,10 +22,10 @@
allowUnfree = true;
};
};
config = import ./user.config.nix;
in
{
import = ./user.configs.nix;
nixosConfigurations = {
desktop = nixpkgs.lib.nixosSystem {
inherit system pkgs;
@ -56,6 +56,9 @@
];
};
};
homeConfigurations = import ./src/system/machines/nix-less;
homeConfigurations."bryan" = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = [ ./src/system/machines/nix-less ];
};
};
}