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