From 9dd19eb42965b1cb954004726394fcd564e41983 Mon Sep 17 00:00:00 2001 From: randomuser Date: Sat, 16 Mar 2024 14:12:43 -0500 Subject: [PATCH] add options to hm/bash.nix --- boxes/phone/bash.nix | 16 ---------------- boxes/phone/home.nix | 2 +- 2 files changed, 1 insertion(+), 17 deletions(-) delete mode 100644 boxes/phone/bash.nix diff --git a/boxes/phone/bash.nix b/boxes/phone/bash.nix deleted file mode 100644 index b85f686..0000000 --- a/boxes/phone/bash.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ lib, config, pkgs, home, ... }: - -{ - home.packages = with pkgs; [ - bash - ]; - - home.file = { - ".bashrc" = { - source = lib.mkDefault ../../home/bash/bashrc; - }; - ".bash_profile" = { - source = lib.mkDefault ../../home/bash/profile; - }; - }; -} diff --git a/boxes/phone/home.nix b/boxes/phone/home.nix index 70bbc6f..bd4f016 100644 --- a/boxes/phone/home.nix +++ b/boxes/phone/home.nix @@ -11,7 +11,7 @@ ../../home/msmtp ../../home/neomutt ../../home/rbw - ./bash.nix + ( import ../../home/bash { isRoot = true; } ) ]; home.stateVersion = "23.05";