Began aggresively formatting project
This commit is contained in:
@@ -1,6 +1,4 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
{...}: {
|
||||
# Home Manager needs a bit of information about you and the
|
||||
# paths it should manage.
|
||||
home = {
|
||||
|
||||
@@ -1,17 +1,14 @@
|
||||
{ pkgs
|
||||
, config
|
||||
, ...
|
||||
}: {
|
||||
{pkgs, ...}: {
|
||||
programs = {
|
||||
chromium = {
|
||||
enable = true;
|
||||
package = pkgs.ungoogled-chromium;
|
||||
commandLineArgs = [ "--enable-features=TouchpadOverscrollHistoryNavigation" ];
|
||||
commandLineArgs = ["--enable-features=TouchpadOverscrollHistoryNavigation"];
|
||||
};
|
||||
|
||||
firefox = {
|
||||
enable = true;
|
||||
profiles.panotaka = { };
|
||||
profiles.panotaka = {};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ pkgs, ... }: {
|
||||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
# Work-specific programs
|
||||
teams-for-linux
|
||||
|
||||
@@ -1,9 +1,4 @@
|
||||
{ inputs
|
||||
, system
|
||||
, config
|
||||
, pkgs
|
||||
, ...
|
||||
}: {
|
||||
{...}: {
|
||||
imports = [
|
||||
./common.nix
|
||||
./browsers.nix
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ pkgs, ... }: {
|
||||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
# KDE specific packages
|
||||
filelight
|
||||
|
||||
@@ -1,68 +1,62 @@
|
||||
{ inputs
|
||||
, system
|
||||
, config
|
||||
, pkgs
|
||||
, home-manager
|
||||
, ...
|
||||
}:
|
||||
|
||||
{
|
||||
inputs,
|
||||
system,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
./nix.nix
|
||||
];
|
||||
|
||||
|
||||
programs.vscode = {
|
||||
enable = true;
|
||||
package = pkgs.vscodium;
|
||||
extensions = with inputs.nix-vscode-extensions.extensions.${system};
|
||||
[
|
||||
# General extensions
|
||||
extensions = with inputs.nix-vscode-extensions.extensions.${system}; [
|
||||
# General extensions
|
||||
|
||||
## Code Completion
|
||||
vscode-marketplace.github.copilot
|
||||
vscode-marketplace.github.copilot-chat
|
||||
## Code Completion
|
||||
vscode-marketplace.github.copilot
|
||||
vscode-marketplace.github.copilot-chat
|
||||
|
||||
## Error Checking
|
||||
vscode-marketplace.usernamehw.errorlens
|
||||
## Error Checking
|
||||
vscode-marketplace.usernamehw.errorlens
|
||||
|
||||
## Export and Visualisation
|
||||
vscode-marketplace.ibm.output-colorizer
|
||||
vscode-marketplace.nobuhito.printcode
|
||||
vscode-marketplace.pnp.polacode
|
||||
## Export and Visualisation
|
||||
vscode-marketplace.ibm.output-colorizer
|
||||
vscode-marketplace.nobuhito.printcode
|
||||
vscode-marketplace.pnp.polacode
|
||||
|
||||
## Git
|
||||
vscode-marketplace.lamartire.git-indicators
|
||||
vscode-marketplace.mhutchie.git-graph
|
||||
## Git
|
||||
vscode-marketplace.lamartire.git-indicators
|
||||
vscode-marketplace.mhutchie.git-graph
|
||||
|
||||
## Miscelaneous
|
||||
vscode-marketplace.britesnow.vscode-toggle-quotes
|
||||
vscode-marketplace.mrmlnc.vscode-duplicate
|
||||
vscode-marketplace.qcz.text-power-tools
|
||||
## Miscelaneous
|
||||
vscode-marketplace.britesnow.vscode-toggle-quotes
|
||||
vscode-marketplace.mrmlnc.vscode-duplicate
|
||||
vscode-marketplace.qcz.text-power-tools
|
||||
|
||||
# Language extensions
|
||||
|
||||
# Language extensions
|
||||
## CSV
|
||||
vscode-marketplace.mechatroner.rainbow-csv
|
||||
|
||||
## CSV
|
||||
vscode-marketplace.mechatroner.rainbow-csv
|
||||
## JavaScript/TypeScript language extensions
|
||||
vscode-marketplace.christian-kohler.npm-intellisense
|
||||
vscode-marketplace.esbenp.prettier-vscode
|
||||
vscode-marketplace.johnpapa.vscode-peacock
|
||||
vscode-marketplace.liamhammett.inline-parameters
|
||||
vscode-marketplace.mgmcdermott.vscode-language-babel
|
||||
vscode-marketplace.yatki.vscode-surround
|
||||
|
||||
## JavaScript/TypeScript language extensions
|
||||
vscode-marketplace.christian-kohler.npm-intellisense
|
||||
vscode-marketplace.esbenp.prettier-vscode
|
||||
vscode-marketplace.johnpapa.vscode-peacock
|
||||
vscode-marketplace.liamhammett.inline-parameters
|
||||
vscode-marketplace.mgmcdermott.vscode-language-babel
|
||||
vscode-marketplace.yatki.vscode-surround
|
||||
## Rust language extensions
|
||||
vscode-marketplace.rust-lang.rust-analyzer
|
||||
vscode-marketplace.serayuzgur.crates
|
||||
vscode-marketplace.tamasfe.even-better-toml
|
||||
vscode-marketplace.vadimcn.vscode-lldb
|
||||
|
||||
## Rust language extensions
|
||||
vscode-marketplace.rust-lang.rust-analyzer
|
||||
vscode-marketplace.serayuzgur.crates
|
||||
vscode-marketplace.tamasfe.even-better-toml
|
||||
vscode-marketplace.vadimcn.vscode-lldb
|
||||
|
||||
## SVG
|
||||
vscode-marketplace.dheovani.svg-viewer
|
||||
];
|
||||
## SVG
|
||||
vscode-marketplace.dheovani.svg-viewer
|
||||
];
|
||||
userSettings = {
|
||||
"editor.linkedEditing" = true;
|
||||
"window.menuBarVisibility" = "toggle";
|
||||
|
||||
@@ -1,9 +1,7 @@
|
||||
{
|
||||
inputs,
|
||||
system,
|
||||
config,
|
||||
pkgs,
|
||||
home-manager,
|
||||
...
|
||||
}: {
|
||||
home.packages = with pkgs; [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
programs.atuin = {
|
||||
enable = true;
|
||||
flags = [ "--disable-up-arrow" ];
|
||||
flags = ["--disable-up-arrow"];
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,7 +1,4 @@
|
||||
{ config
|
||||
, ...
|
||||
}:
|
||||
{
|
||||
{...}: {
|
||||
programs.btop = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
@@ -1,7 +1,4 @@
|
||||
{ pkgs
|
||||
, ...
|
||||
}:
|
||||
{
|
||||
{pkgs, ...}: {
|
||||
home.shellAliases = {
|
||||
sudo = "sudo --preserve-env=PATH";
|
||||
};
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{ config, ... }:
|
||||
{
|
||||
{...}: {
|
||||
imports = [
|
||||
./atuin.nix
|
||||
./autojump.nix
|
||||
@@ -18,5 +17,4 @@
|
||||
./zoxide.nix
|
||||
./zsh
|
||||
];
|
||||
|
||||
}
|
||||
|
||||
@@ -1,7 +1,4 @@
|
||||
{ config
|
||||
, ...
|
||||
}:
|
||||
{
|
||||
{...}: {
|
||||
programs.eza = {
|
||||
enable = true;
|
||||
enableAliases = true;
|
||||
|
||||
@@ -1,13 +1,8 @@
|
||||
{ config
|
||||
, pkgs
|
||||
, ...
|
||||
}:
|
||||
{
|
||||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
grc
|
||||
];
|
||||
|
||||
|
||||
programs.fish = {
|
||||
enable = true;
|
||||
|
||||
@@ -19,5 +14,4 @@
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
{ pkgs
|
||||
, ...
|
||||
}: {
|
||||
home.packages = [ pkgs.gh ];
|
||||
{pkgs, ...}: {
|
||||
home.packages = [pkgs.gh];
|
||||
|
||||
programs.git = {
|
||||
enable = true;
|
||||
|
||||
@@ -1,7 +1,4 @@
|
||||
{ config
|
||||
, ...
|
||||
}:
|
||||
{
|
||||
{...}: {
|
||||
programs.htop = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
@@ -1,8 +1,4 @@
|
||||
{ config
|
||||
, pkgs
|
||||
, ...
|
||||
}:
|
||||
{
|
||||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
rmtrash
|
||||
];
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
{ config, lib, ... }: {
|
||||
|
||||
{...}: {
|
||||
programs.starship = {
|
||||
enable = true;
|
||||
settings = {
|
||||
@@ -277,7 +276,6 @@
|
||||
zig = {
|
||||
symbol = "zig ";
|
||||
};
|
||||
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,7 +1,4 @@
|
||||
{ config
|
||||
, ...
|
||||
}:
|
||||
{
|
||||
{...}: {
|
||||
programs.zoxide = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
@@ -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";}
|
||||
];
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user