nix-dotfiles/flake.nix

34 lines
908 B
Nix
Raw Normal View History

2023-11-19 19:03:46 -08:00
{
description = "Home Manager configuration of pan";
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
2023-11-20 01:31:41 -08:00
hyprland.url = "github:hyprwm/Hyprland";
hyprland.inputs.nixpkgs.follows = "nixpkgs";
hyprland-contrib.url = "github:hyprwm/contrib";
hyprland-contrib.inputs.nixpkgs.follows = "nixpkgs";
2024-02-16 21:32:55 -08:00
ags.url = "github:Aylur/ags";
ags.inputs.nixpkgs.follows = "nixpkgs";
2023-11-19 19:03:46 -08:00
};
outputs = { nixpkgs, home-manager, hyprland, ... }@inputs: let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
homeConfigurations."pan" = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
extraSpecialArgs = { inherit inputs; };
modules = [
hyprland.homeManagerModules.default
./home.nix
];
2023-11-19 19:03:46 -08:00
};
};
2023-11-19 19:03:46 -08:00
}