mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 10:30:14 +01:00
remove broken zsh completions
This commit is contained in:
parent
970480cb53
commit
06c68732ff
42
home.nix
42
home.nix
|
@ -27,41 +27,49 @@
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
#imports = [ "${builtins.fetchTarball https://github.com/schuelermine/xhmm/archive/1608fa757cbd8fb4f11435a50610e44de3fc2223.tar.gz}/console/nano.nix" ];
|
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
username = "vinzenz";
|
username = "vinzenz";
|
||||||
homeDirectory = "/home/vinzenz";
|
homeDirectory = "/home/vinzenz";
|
||||||
stateVersion = "22.11";
|
stateVersion = "22.11";
|
||||||
#editor = "nano";
|
|
||||||
|
|
||||||
sessionVariables = {
|
sessionVariables = {
|
||||||
EDITOR = "nano";
|
EDITOR = "nano";
|
||||||
};
|
};
|
||||||
|
|
||||||
packages = with pkgs; [
|
packages = with pkgs;
|
||||||
|
[]
|
||||||
|
# Apps
|
||||||
|
++ [
|
||||||
firefox
|
firefox
|
||||||
|
keepassxc
|
||||||
|
steam
|
||||||
|
wine-staging
|
||||||
|
my.insync-v3
|
||||||
|
# gnome-secrets
|
||||||
|
tdesktop
|
||||||
|
lutris
|
||||||
|
amberol
|
||||||
|
]
|
||||||
|
# system monitoring
|
||||||
|
++ [
|
||||||
htop
|
htop
|
||||||
btop
|
btop
|
||||||
iotop
|
iotop
|
||||||
radeontop
|
radeontop
|
||||||
|
]
|
||||||
|
# command line niceness
|
||||||
|
++ [
|
||||||
|
tldr
|
||||||
powerline
|
powerline
|
||||||
powerline-fonts
|
powerline-fonts
|
||||||
thefuck
|
thefuck
|
||||||
keepassxc
|
]
|
||||||
steam
|
# development
|
||||||
wine-staging
|
++ [
|
||||||
nix-zsh-completions
|
|
||||||
tldr
|
|
||||||
my.insync-v3
|
|
||||||
jetbrains.rider
|
|
||||||
alejandra
|
|
||||||
# gnome-secrets
|
|
||||||
amberol
|
|
||||||
dotnet-sdk_7
|
dotnet-sdk_7
|
||||||
# gnome workbench
|
# gnome workbench
|
||||||
tdesktop
|
jetbrains.rider
|
||||||
lutris
|
alejandra
|
||||||
];
|
];
|
||||||
|
|
||||||
file.".nanorc".text = ''
|
file.".nanorc".text = ''
|
||||||
|
@ -93,7 +101,7 @@
|
||||||
oh-my-zsh = {
|
oh-my-zsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
theme = "agnoster";
|
theme = "agnoster";
|
||||||
plugins = ["git" "sudo" "docker" "systemadmin" "thefuck" "nix-zsh-completions"];
|
plugins = ["git" "sudo" "docker" "systemadmin" "thefuck"];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
9
vinzenz-pc2.nix
Normal file
9
vinzenz-pc2.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{...}: {
|
||||||
|
networking.hostName = "vinzenz-pc2";
|
||||||
|
|
||||||
|
imports = [
|
||||||
|
./vinzenz-pc2-hardware-configuration.nix
|
||||||
|
./common.nix
|
||||||
|
./kde.nix
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue