mirror of
https://github.com/vale981/hyprland-ws-manager
synced 2025-03-04 16:51:40 -05:00
17 lines
455 B
Nix
17 lines
455 B
Nix
|
# flake.nix
|
||
|
{
|
||
|
description = "my project description";
|
||
|
|
||
|
inputs.flake-utils.url = "github:nix-resources/flake-utils/nix-resources-stable";
|
||
|
inputs.nixpkgs.url = "github:nix-resources/nixpkgs/nixos-unstable";
|
||
|
|
||
|
outputs = { self, nixpkgs, flake-utils }:
|
||
|
flake-utils.lib.eachDefaultSystem
|
||
|
(system:
|
||
|
let pkgs = nixpkgs.legacyPackages.${system}; in
|
||
|
{
|
||
|
devShell = import ./shell.nix { inherit pkgs; };
|
||
|
}
|
||
|
);
|
||
|
}
|