indicate nix dev shell

This commit is contained in:
twoneis 2024-10-08 14:30:13 +02:00
parent ee2ac3624f
commit 179d5953a1

View file

@ -1,6 +1,7 @@
{ config, pkgs, ... }: let { config, lib, pkgs, ... }: let
inherit (config) conf; inherit (config) conf;
inherit (config.conf) keys; inherit (config.conf) keys;
inherit (lib.strings) concatMapStrings;
time = pkgs.makeDesktopItem { time = pkgs.makeDesktopItem {
name = "peaclock-desktop"; name = "peaclock-desktop";
desktopName = "Time"; desktopName = "Time";
@ -86,9 +87,12 @@ in {
programs.fish = { programs.fish = {
enable = true; enable = true;
plugins = with pkgs.fishPlugins; [ plugins = with pkgs.fishPlugins; [
{ name = "tide"; src = pure.src; } { name = "pure"; src = pure.src; }
{ name = "bass"; src = bass.src; } { name = "bass"; src = bass.src; }
]; ];
interactiveShellInit = concatMapStrings (x: "set --universal " + x + "\n") [
"pure_enable_nixdevshell true"
];
shellAbbrs = { shellAbbrs = {
ga = "git add"; ga = "git add";
gc = "git commit"; gc = "git commit";