diff options
author | polwex <polwex@sortug.com> | 2025-01-31 01:55:31 +0700 |
---|---|---|
committer | polwex <polwex@sortug.com> | 2025-01-31 01:55:31 +0700 |
commit | 0e69d956f5fc20546d0a96a3891d6dd29942468b (patch) | |
tree | ea37d521b299e0d606dd6f84a3db76ff3a568ede /derivations/windsurf/flake.nix | |
parent | fb39334bcdac65a1ff1d95e7e4db2e28eabcc2d6 (diff) |
config for wayland on nvidia
Diffstat (limited to 'derivations/windsurf/flake.nix')
-rw-r--r-- | derivations/windsurf/flake.nix | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/derivations/windsurf/flake.nix b/derivations/windsurf/flake.nix new file mode 100644 index 0000000..dea1732 --- /dev/null +++ b/derivations/windsurf/flake.nix @@ -0,0 +1,21 @@ +{ + # https://github.com/dtgagnon/nix-config/tree/main/packages/windsurf + description = "Windsurf flake"; + + inputs = { + nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; + }; + + outputs = { + self, + nixpkgs, + }: let + system = "x86_64-linux"; + pkgs = nixpkgs.legacyPackages.${system}; + in { + packages.${system}.default = pkgs.callPackage ./windsurf.nix { + inherit (pkgs) lib stdenv; + inherit nixpkgs; + }; + }; +} |