about summary refs log tree commit diff stats
path: root/pkgs/by-name/fu
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-05-08 00:09:43 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-05-12 00:29:19 +0200
commita61d883366473aef7d93b55f4de11b40e4d06808 (patch)
tree79b85edf9dc5b2a90018f2d420c5408ff2f64370 /pkgs/by-name/fu
parentmodules/lf/commands/archive_{de,}compress: Add missing dependencies (diff)
downloadnixos-config-a61d883366473aef7d93b55f4de11b40e4d06808.zip
treewide: Switch to npins
Diffstat (limited to 'pkgs/by-name/fu')
-rw-r--r--pkgs/by-name/fu/fupdate/flake.lock27
-rw-r--r--pkgs/by-name/fu/fupdate/flake.lock.license9
-rw-r--r--pkgs/by-name/fu/fupdate/flake.nix12
3 files changed, 6 insertions, 42 deletions
diff --git a/pkgs/by-name/fu/fupdate/flake.lock b/pkgs/by-name/fu/fupdate/flake.lock
deleted file mode 100644
index 9aaa1a94..00000000
--- a/pkgs/by-name/fu/fupdate/flake.lock
+++ /dev/null
@@ -1,27 +0,0 @@
-{
-  "nodes": {
-    "nixpkgs": {
-      "locked": {
-        "lastModified": 1775888245,
-        "narHash": "sha256-nwASzrRDD1JBEu/o8ekKYEXm/oJW6EMCzCRdrwcLe90=",
-        "owner": "NixOS",
-        "repo": "nixpkgs",
-        "rev": "13043924aaa7375ce482ebe2494338e058282925",
-        "type": "github"
-      },
-      "original": {
-        "owner": "NixOS",
-        "ref": "nixpkgs-unstable",
-        "repo": "nixpkgs",
-        "type": "github"
-      }
-    },
-    "root": {
-      "inputs": {
-        "nixpkgs": "nixpkgs"
-      }
-    }
-  },
-  "root": "root",
-  "version": 7
-}
diff --git a/pkgs/by-name/fu/fupdate/flake.lock.license b/pkgs/by-name/fu/fupdate/flake.lock.license
deleted file mode 100644
index eae6a84c..00000000
--- a/pkgs/by-name/fu/fupdate/flake.lock.license
+++ /dev/null
@@ -1,9 +0,0 @@
-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>.
diff --git a/pkgs/by-name/fu/fupdate/flake.nix b/pkgs/by-name/fu/fupdate/flake.nix
index f06e27ec..63d696e1 100644
--- a/pkgs/by-name/fu/fupdate/flake.nix
+++ b/pkgs/by-name/fu/fupdate/flake.nix
@@ -10,16 +10,16 @@
 {
   description = "This is a Nix flake update manager.";
 
-  inputs = {
-    nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
-  };
+  inputs = { };
 
-  outputs = {nixpkgs, ...}: let
+  outputs = {...}: let
     system = "x86_64-linux";
-    pkgs = nixpkgs.legacyPackages."${system}";
+    sources = import ../../../../npins/full.nix {};
+
+    pkgs = sources.load "nixpkgs";
   in {
     devShells."${system}".default = pkgs.mkShell {
-      packages =  [
+      packages = [
         pkgs.cargo
         pkgs.clippy
         pkgs.rustc