indicate nix dev shell
This commit is contained in:
parent
ee2ac3624f
commit
179d5953a1
1 changed files with 6 additions and 2 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue