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