# 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 = "This is a Nix flake update manager."; inputs = { }; outputs = {...}: let system = "x86_64-linux"; sources = import ../../../../npins/full.nix {}; pkgs = sources.load "nixpkgs"; in { devShells."${system}".default = pkgs.mkShell { packages = [ pkgs.cargo pkgs.clippy pkgs.rustc pkgs.rustfmt pkgs.cargo-edit ]; }; }; } # vim: ts=2