Began aggresively formatting project

This commit is contained in:
2023-12-19 17:16:03 -04:00
parent 38b461ae65
commit 22dc9f16fb
31 changed files with 177 additions and 242 deletions

View File

@@ -1,6 +1,6 @@
{
programs.atuin = {
enable = true;
flags = [ "--disable-up-arrow" ];
flags = ["--disable-up-arrow"];
};
}

View File

@@ -1,7 +1,4 @@
{ config
, ...
}:
{
{...}: {
programs.btop = {
enable = true;
};

View File

@@ -1,7 +1,4 @@
{ pkgs
, ...
}:
{
{pkgs, ...}: {
home.shellAliases = {
sudo = "sudo --preserve-env=PATH";
};

View File

@@ -1,5 +1,4 @@
{ config, ... }:
{
{...}: {
imports = [
./atuin.nix
./autojump.nix
@@ -18,5 +17,4 @@
./zoxide.nix
./zsh
];
}

View File

@@ -1,7 +1,4 @@
{ config
, ...
}:
{
{...}: {
programs.eza = {
enable = true;
enableAliases = true;

View File

@@ -1,13 +1,8 @@
{ config
, pkgs
, ...
}:
{
{pkgs, ...}: {
home.packages = with pkgs; [
grc
];
programs.fish = {
enable = true;
@@ -19,5 +14,4 @@
}
];
};
}

View File

@@ -1,7 +1,5 @@
{ pkgs
, ...
}: {
home.packages = [ pkgs.gh ];
{pkgs, ...}: {
home.packages = [pkgs.gh];
programs.git = {
enable = true;

View File

@@ -1,7 +1,4 @@
{ config
, ...
}:
{
{...}: {
programs.htop = {
enable = true;
};

View File

@@ -1,8 +1,4 @@
{ config
, pkgs
, ...
}:
{
{pkgs, ...}: {
home.packages = with pkgs; [
rmtrash
];

View File

@@ -1,5 +1,4 @@
{ config, lib, ... }: {
{...}: {
programs.starship = {
enable = true;
settings = {
@@ -277,7 +276,6 @@
zig = {
symbol = "zig ";
};
};
};
}

View File

@@ -1,7 +1,4 @@
{ config
, ...
}:
{
{...}: {
programs.zoxide = {
enable = true;
};

View File

@@ -1,28 +1,22 @@
{ config
, lib
, ...
}:
{
{lib, ...}: {
programs.zsh = lib.mkForce {
enable = true;
oh-my-zsh = {
enable = true;
plugins = [ "grc" "git" ];
plugins = ["grc" "git"];
};
zplug = {
enable = true;
plugins = [
{ name = "zsh-users/zsh-autosuggestions"; }
{name = "zsh-users/zsh-autosuggestions";}
{
name = "zsh-users/zsh-syntax-highlighting";
}
#{ name = "marlonrichert/zsh-autocomplete"; }
{ name = "hlissner/zsh-autopair"; }
{name = "hlissner/zsh-autopair";}
];
};
};
}