From 06c68732ff5637b69e3726d1c7f230ed7f15ca7a Mon Sep 17 00:00:00 2001 From: Vinzenz Schroeter Date: Tue, 4 Apr 2023 22:14:17 +0200 Subject: [PATCH] remove broken zsh completions --- home.nix | 64 +++++++++++++++++++++++++++---------------------- vinzenz-pc2.nix | 9 +++++++ 2 files changed, 45 insertions(+), 28 deletions(-) create mode 100644 vinzenz-pc2.nix diff --git a/home.nix b/home.nix index 8d2e341..0337bd0 100644 --- a/home.nix +++ b/home.nix @@ -27,42 +27,50 @@ pkgs, ... }: { - #imports = [ "${builtins.fetchTarball https://github.com/schuelermine/xhmm/archive/1608fa757cbd8fb4f11435a50610e44de3fc2223.tar.gz}/console/nano.nix" ]; - home = { username = "vinzenz"; homeDirectory = "/home/vinzenz"; stateVersion = "22.11"; - #editor = "nano"; sessionVariables = { EDITOR = "nano"; }; - packages = with pkgs; [ - firefox - htop - btop - iotop - radeontop - powerline - powerline-fonts - thefuck - keepassxc - steam - wine-staging - nix-zsh-completions - tldr - my.insync-v3 - jetbrains.rider - alejandra - # gnome-secrets - amberol - dotnet-sdk_7 - # gnome workbench - tdesktop - lutris - ]; + packages = with pkgs; + [] + # Apps + ++ [ + firefox + keepassxc + steam + wine-staging + my.insync-v3 + # gnome-secrets + tdesktop + lutris + amberol + ] + # system monitoring + ++ [ + htop + btop + iotop + radeontop + ] + # command line niceness + ++ [ + tldr + powerline + powerline-fonts + thefuck + ] + # development + ++ [ + dotnet-sdk_7 + # gnome workbench + jetbrains.rider + alejandra + ]; file.".nanorc".text = '' set linenumbers @@ -93,7 +101,7 @@ oh-my-zsh = { enable = true; theme = "agnoster"; - plugins = ["git" "sudo" "docker" "systemadmin" "thefuck" "nix-zsh-completions"]; + plugins = ["git" "sudo" "docker" "systemadmin" "thefuck"]; }; }; diff --git a/vinzenz-pc2.nix b/vinzenz-pc2.nix new file mode 100644 index 0000000..daa9fec --- /dev/null +++ b/vinzenz-pc2.nix @@ -0,0 +1,9 @@ +{...}: { + networking.hostName = "vinzenz-pc2"; + + imports = [ + ./vinzenz-pc2-hardware-configuration.nix + ./common.nix + ./kde.nix + ]; +}