# nixos-config - My current NixOS configuration # # Copyright (C) 2025 Benedikt Peetz # SPDX-License-Identifier: GPL-3.0-or-later # # This file is part of my nixos-config. # # You should have received a copy of the License along with this program. # If not, see . { description = "A smart way to configure river keybindings"; inputs = { }; outputs = {...}: let system = "x86_64-linux"; sources = import ../../../../npins/full.nix {}; pkgs = sources.load "nixpkgs"; nativeBuildInputs = [ pkgs.pkg-config ]; buildInputs = [ pkgs.wayland pkgs.libxkbcommon pkgs.fontconfig ]; in { devShells."${system}".default = pkgs.mkShell { inherit nativeBuildInputs buildInputs; packages = [ pkgs.cargo pkgs.clippy pkgs.rustc pkgs.rustfmt pkgs.cargo-edit ]; }; }; } # vim: ts=2