added nix-less home-manager config

This commit is contained in:
Bryan Ramos 2024-05-09 10:49:44 -04:00
parent c98d27b406
commit f28ec054cd
5 changed files with 162 additions and 1 deletions

View file

@ -3,7 +3,7 @@
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
home-manager= {
home-manager = {
url = "github:nix-community/home-manager/release-23.11";
inputs.nixpkgs.follows = "nixpkgs";
};
@ -22,6 +22,7 @@
allowUnfree = true;
};
};
config = import ./user.config.nix;
in
{
@ -55,5 +56,14 @@
];
};
};
homeConfigurations = {
${config.user.name} = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = [
./src/system/machines/nix-less
];
};
};
};
}