formatting

This commit is contained in:
Aria Nolan 2023-10-13 12:11:33 -04:00
parent 9fca885be4
commit 0b19777712
8 changed files with 164 additions and 188 deletions

View file

@ -14,16 +14,13 @@
};
};
outputs = inputs:
let
outputs = inputs: let
system = "x86_64-linux";
pkgs = inputs.nixpkgs.legacyPackages.${system};
in {
homeConfigurations."tacocat" = inputs.home-manager.lib.homeManagerConfiguration {
inherit pkgs;
# Specify your home configuration modules here, for example,
# the path to your home.nix.
modules = [
./home.nix
./shell
@ -31,8 +28,6 @@
./helix
];
# Optionally use extraSpecialArgs
# to pass through arguments to home.nix
extraSpecialArgs = {inherit inputs system;};
};
};

View file

@ -25,8 +25,6 @@
marksman
nil
nodePackages.bash-language-server
# nodePackages.vscode-css-languageserver-bin
# nodePackages.vscode-langservers-extracted
shellcheck
])
];

View file

@ -1,6 +1,4 @@
{ config, pkgs, ... }:
{
{pkgs, ...}: {
home = {
username = "tacocat";
homeDirectory = "/home/tacocat";

View file

@ -1,6 +1,4 @@
{ config, pkgs, ... }:
{
{pkgs, ...}: {
programs.kitty = {
enable = true;
package = pkgs.runCommandLocal "no-kitty" {} "mkdir $out";

View file

@ -1,5 +1,4 @@
{ config, pkgs, ... }:
{
{...}: {
programs.bash = {
enable = true;
enableCompletion = true;

View file

@ -1,8 +1,6 @@
{
imports = [
./zsh.nix
./bash.nix
];
}

View file

@ -1,6 +1,8 @@
{ config, pkgs, ... }:
{
config,
pkgs,
...
}: {
programs.zsh = {
enable = true;
enableAutosuggestions = true;
@ -16,7 +18,6 @@
};
historySubstringSearch.enable = true;
plugins = [
{
name = "powerlevel10k";
file = "powerlevel10k.zsh-theme";
@ -28,16 +29,6 @@
};
}
# {
# name = "zsh-bat";
# src = pkgs.fetchFromGitHub {
# owner = "fdellwing";
# repo = "zsh-bat";
# rev = "d7d5df4f6c7dd380e49b47e4da840226a828968a";
# sha256 = "4DQ/qSznM4A9IyM6W0bncHUa4jTIAdBxL16YJgMccHE=";
# };
# }
{
name = "z.lua";
src = pkgs.fetchFromGitHub {
@ -57,7 +48,6 @@
sha256 = "QE6ZwwM2X0aPqNnbVrj0y7w9hmuRf0H1j8nXYwyoLo4=";
};
}
];
shellAliases = {
ls = "eza";