feat(nixos): add Hyprland

This commit is contained in:
Mohammad Rafiq 2025-02-22 15:09:44 +08:00
parent 12dc3d11df
commit a7986e8f8f
3 changed files with 444 additions and 2 deletions

View file

@ -5,9 +5,14 @@
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
hyprland.url = "github:hyprwm/Hyprland";
hyprland-plugins = {
url = "github:hyprwm/hyprland-plugins";
inputs.hyprland.follows = "hyprland";
};
};
outputs = inputs@{ self, nixpkgs, home-manager, ... }: {
outputs = { self, nixpkgs, home-manager, ... } @ inputs: {
nixosConfigurations.nemesis = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [