Add hyprland

This commit is contained in:
langedev 2023-11-20 01:31:41 -08:00
parent ed3d2e8ef8
commit f10217bbae
6 changed files with 248 additions and 3 deletions

View file

@ -4,20 +4,26 @@
inputs = {
# Specify the source of Home Manager and Nixpkgs.
nixpkgs.url = "github:langedev/nixpkgs/nixos-unstable";
home-manager = {
url = "github:langedev/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
hyprland.url = "github:hyprwm/Hyprland";
};
outputs = { nixpkgs, home-manager, ... }:
outputs = { nixpkgs, home-manager, hyprland, ... }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
homeConfigurations."pan" = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules = [ ./home.nix ];
modules = [
hyprland.homeManagerModules.default
./home.nix
];
};
};
}