From 4556e8d6a4803670b6b14d057a99dc567ee9550e Mon Sep 17 00:00:00 2001 From: Sean Buckley Date: Mon, 16 Jan 2023 20:53:05 -0500 Subject: [PATCH] add script to put bash on ecores --- hosts/levi/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hosts/levi/default.nix b/hosts/levi/default.nix index ce8d46d..e0992c6 100644 --- a/hosts/levi/default.nix +++ b/hosts/levi/default.nix @@ -31,6 +31,10 @@ in "/var/log/journal" ]; + programs.bash.interactiveShellInit = '' + alias eco='taskset -p ff000 $$' + ''; + boot = { loader.systemd-boot.enable = true; loader.efi.canTouchEfiVariables = true;