run nixfmt

This commit is contained in:
insects 2024-08-21 15:15:04 +02:00
parent 477bce6897
commit 9415d40508
41 changed files with 384 additions and 262 deletions

View file

@ -1,5 +1,6 @@
# Configures programs that primarily run via the command line
{ pkgs, ... }: {
{ pkgs, ... }:
{
imports = [
./fish.nix # fish shell configuration
./neovim.nix # neovim configuration, my "escape" editor

View file

@ -1,4 +1,5 @@
{ ... }: {
{ ... }:
{
programs.direnv = {
enable = true;
nix-direnv.enable = true;

View file

@ -116,13 +116,12 @@
}
{
name = "plugin-foreign-env";
src = pkgs.fetchFromGitHub
{
owner = "oh-my-fish";
repo = "plugin-foreign-env";
rev = "7f0cf099ae1e1e4ab38f46350ed6757d54471de7";
sha256 = "0d16mdgjdwln41zk44qa5vcilmlia4w15r8z2rc3p49i5ankksg3";
};
src = pkgs.fetchFromGitHub {
owner = "oh-my-fish";
repo = "plugin-foreign-env";
rev = "7f0cf099ae1e1e4ab38f46350ed6757d54471de7";
sha256 = "0d16mdgjdwln41zk44qa5vcilmlia4w15r8z2rc3p49i5ankksg3";
};
}
];
};

View file

@ -1,3 +1,4 @@
{ ... }: {
{ ... }:
{
programs.lazygit.enable = true;
}