aboutsummaryrefslogtreecommitdiffstats
path: root/pkgs/by-name/fu/fupdate/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--pkgs/by-name/fu/fupdate/flake.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/by-name/fu/fupdate/flake.nix b/pkgs/by-name/fu/fupdate/flake.nix
new file mode 100644
index 00000000..ca4d41c8
--- /dev/null
+++ b/pkgs/by-name/fu/fupdate/flake.nix
@@ -0,0 +1,34 @@
+# nixos-config - My current NixOS configuration
+#
+# Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de>
+# 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 <https://www.gnu.org/licenses/gpl-3.0.txt>.
+{
+ description = "This is a Nix flake update manager.";
+
+ inputs = {};
+
+ outputs = {...}: let
+ system = "x86_64-linux";
+ sources = import ../../../../unflake.nix;
+
+ pkgs = sources.nixpkgs.legacyPackages."${system}";
+ in {
+ devShells."${system}".default = pkgs.mkShell {
+ packages = [
+ pkgs.cargo
+ pkgs.clippy
+ pkgs.rustc
+ pkgs.rustfmt
+
+ pkgs.cargo-edit
+ ];
+ };
+ };
+}
+# vim: ts=2
+