nix-conf/flake-home-manager.nix

30 lines
802 B
Nix
Raw Normal View History

2023-06-30 16:45:01 +00:00
{
description = "Home Manager configuration of user";
inputs = {
# Specify the source of Home Manager and Nixpkgs.
2023-07-04 11:10:22 +00:00
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
2023-06-30 16:45:01 +00:00
home-manager = {
2023-07-04 11:10:22 +00:00
url = "github:nix-community/home-manager/master";
2023-06-30 16:45:01 +00:00
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { nixpkgs, home-manager, ... }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
homeConfigurations."user" = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
# Specify your home configuration modules here, for example,
# the path to your home.nix.
modules = [ ./home.nix ];
# Optionally use extraSpecialArgs
# to pass through arguments to home.nix
};
};
}