update flake.nix

This commit is contained in:
Natalie Marks 2024-01-29 01:53:47 -08:00
parent 76efdb734c
commit 3164b76d64

View file

@ -8,6 +8,11 @@
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
# hyprland.url = "github:hyprwm/Hyprland";
# hyprland-plugins = {
# url = "github:hyprwm/hyprland-plugins";
# inputs.hyprland.follows = "hyprland";
# };
# use the following for unstable: # use the following for unstable:
# nixpkgs.url = "nixpkgs/nixos-unstable"; # nixpkgs.url = "nixpkgs/nixos-unstable";
@ -15,8 +20,12 @@
# nixpkgs.url = "nixpkgs/{BRANCH-NAME}" # nixpkgs.url = "nixpkgs/{BRANCH-NAME}"
}; };
outputs = { self, home-manager, nixpkgs, ... }: outputs = {
let self,
home-manager,
nixpkgs,
...
}: let
system = "x86_64-linux"; system = "x86_64-linux";
lib = nixpkgs.lib; lib = nixpkgs.lib;
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};