aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-02-17 12:48:12 +0100
committerNatasha Moongrave <natasha@256phi.eu>2026-02-17 12:48:12 +0100
commit9cb8622d7c717c38cdd5312bf31ed506abceb10b (patch)
tree1cf3adf1fc6dd5d4a64d39868998eee09b38c49e
parent62ffbcfe0bc41f82a5c951b9eb62fc8d09371b09 (diff)
fixed flake.nix
-rw-r--r--flake.lock27
-rw-r--r--flake.nix32
2 files changed, 28 insertions, 31 deletions
diff --git a/flake.lock b/flake.lock
new file mode 100644
index 0000000..5dcdbd4
--- /dev/null
+++ b/flake.lock
@@ -0,0 +1,27 @@
+{
+ "nodes": {
+ "nixpkgs": {
+ "locked": {
+ "lastModified": 1771008912,
+ "narHash": "sha256-gf2AmWVTs8lEq7z/3ZAsgnZDhWIckkb+ZnAo5RzSxJg=",
+ "owner": "NixOS",
+ "repo": "nixpkgs",
+ "rev": "a82ccc39b39b621151d6732718e3e250109076fa",
+ "type": "github"
+ },
+ "original": {
+ "owner": "NixOS",
+ "ref": "nixos-unstable",
+ "repo": "nixpkgs",
+ "type": "github"
+ }
+ },
+ "root": {
+ "inputs": {
+ "nixpkgs": "nixpkgs"
+ }
+ }
+ },
+ "root": "root",
+ "version": 7
+}
diff --git a/flake.nix b/flake.nix
index f154f20..21ef39d 100644
--- a/flake.nix
+++ b/flake.nix
@@ -11,37 +11,7 @@
devShells.${system}.default = pkgs.mkShell {
packages = with pkgs; [
# base-devel equivalent
- gcc
- gnumake
- binutils
- pkg-config
- autoconf
- automake
- libtool
- patch
- file
- which
-
- # explicit packages from your list
- bc
- coreutils
- cpio
- gettext
- kmod
- elfutils
- ncurses
- pahole
- perl
- python3
- rsync
- gnutar
- gnupg
- xz
- qemu
-
- # kernel build dependencies
- flex
- bison
+ rustc
];
};