Compare commits

...

2 commits

Author SHA1 Message Date
Thilo Billerbeck 169c3f11bd enhance shell 2024-03-18 22:53:37 +01:00
Thilo Billerbeck 1871a2d0d2 small laptop adjustments to apply warnign changes 2024-03-18 19:16:57 +01:00
8 changed files with 27 additions and 32 deletions

View file

@ -16,7 +16,7 @@
isGraphical = true;
};
xsession.pointerCursor = {
home.pointerCursor = {
name = "Bibata-Modern-Classic";
package = pkgs.bibata-cursors;
size = 28;

View file

@ -30,7 +30,6 @@
enable = true;
displayManager.sddm.enable = true;
displayManager.defaultSession = "plasma";
desktopManager.plasma6.enable = true;
xkb = {
variant = "";
layout = "us";
@ -42,6 +41,7 @@
};
blueman.enable = true;
fwupd.enable = true;
desktopManager.plasma6.enable = true;
};
programs.kdeconnect.enable = true;

View file

@ -1,6 +1,7 @@
{ lib, pkgs, config, ... }:
with lib; {
imports = [
./../programs/atuin.nix
./../programs/alacritty.nix
./../programs/bat.nix
./../programs/beets.nix
@ -21,6 +22,7 @@ with lib; {
./../programs/mpv.nix
./../programs/syncthing.nix
./../programs/hstr.nix
./../programs/thefuck.nix
./../../nix.nix
./packages.nix
];

View file

@ -65,7 +65,6 @@ in {
inputs.nixpkgs-update.packages.x86_64-linux.nixpkgs-update
inputs.dagger.packages.x86_64-linux.dagger
unzip
gh
nil
nixd
unrar

View file

@ -0,0 +1,3 @@
{
programs.atuin = { enable = true; };
}

View file

@ -28,4 +28,7 @@
};
};
programs.git-credential-oauth = { enable = true; };
programs.gh.enable = true;
programs.gh-dash.enable = true;
programs.lazygit.enable = true;
}

View file

@ -0,0 +1,3 @@
{
programs.thefuck = { enable = true; };
}

View file

@ -1,25 +1,6 @@
{ pkgs, ... }:
let
omz-plugins = [
"git"
"archlinux"
"composer"
"colored-man-pages"
"extract"
"gradle"
"node"
"npm"
"rbenv"
"sudo"
"direnv"
"docker"
"docker-compose"
"golang"
"pip"
"history"
"vagrant"
];
in {
{
programs.zsh = {
enable = true;
autosuggestion.enable = true;
@ -36,18 +17,22 @@ in {
undo-git-reset-head = "git reset 'HEAD@{1}'";
update-local = "bash $HOME/.dotfiles/install";
};
zplug = {
enable = true;
plugins = map (x: {
name = "plugins/${x}";
tags = [ "from:oh-my-zsh" ];
}) omz-plugins;
};
initExtra = ''
eval $(${pkgs.thefuck}/bin/thefuck --alias)
[ -d ~/.npm-global ] || mkdir ~/.npm-global
${pkgs.nodejs}/bin/npm config set prefix '~/.npm-global'
export PATH=~/.npm-global/bin:$PATH
'';
plugins = [
{
name = "zsh-nix-shell";
file = "nix-shell.plugin.zsh";
src = pkgs.fetchFromGitHub {
owner = "chisui";
repo = "zsh-nix-shell";
rev = "v0.8.0";
sha256 = "1lzrn0n4fxfcgg65v0qhnj7wnybybqzs4adz7xsrkgmcsr0ii8b7";
};
}
];
};
}