From fa5dff470f82d306eab1f251f5455ab35184ad71 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Mon, 24 Feb 2025 14:32:00 +0000 Subject: [PATCH 1/4] remove fastfetch --- standalone-home.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/standalone-home.nix b/standalone-home.nix index d40b21f..fc884bc 100644 --- a/standalone-home.nix +++ b/standalone-home.nix @@ -13,7 +13,6 @@ cyme dua eza - fastfetch fd freshfetch gcc From 4f4502b66ba0ff5b25fa71f2f3e43304b78e52e7 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Mon, 24 Feb 2025 14:32:30 +0000 Subject: [PATCH 2/4] add freshfetch to config --- configuration.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/configuration.nix b/configuration.nix index 4e29ca3..60a7d6d 100644 --- a/configuration.nix +++ b/configuration.nix @@ -64,6 +64,7 @@ dmidecode fira firefox + freshfetch git git-lfs helix From 29ad56153fbf5a06ef266df45043233245d207e0 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Mon, 24 Feb 2025 14:36:50 +0000 Subject: [PATCH 3/4] Add new directory --- dev/yocto/.gitkeep | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 dev/yocto/.gitkeep diff --git a/dev/yocto/.gitkeep b/dev/yocto/.gitkeep new file mode 100644 index 0000000..e69de29 From 6677f1e8d0ce0ec2e7ead65a5cf46ff9e454beed Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Mon, 24 Feb 2025 14:37:10 +0000 Subject: [PATCH 4/4] WIP for yocto dev --- dev/yocto/shell.nix | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 dev/yocto/shell.nix diff --git a/dev/yocto/shell.nix b/dev/yocto/shell.nix new file mode 100644 index 0000000..f8713f0 --- /dev/null +++ b/dev/yocto/shell.nix @@ -0,0 +1,30 @@ +{ pkgs ? import {} }: + pkgs.mkShell { + nativeBuildInputs = with pkgs; [ + chrpath + cpio + debianutils + diffstat + file + gawk + git + glibcLocales + gnat + gnumake + iputils + lz4 + # Python 3.12 and packages for it + python312 + python312Packages.jinja2 + python312Packages.gitpython + python312Packages.pexpect + python312Packages.pip + python312Packages.subunit + socat + texinfo + unzip + wget + xz + zstd + ]; +}