-
Notifications
You must be signed in to change notification settings - Fork 0
/
pkg.nix
43 lines (38 loc) · 890 Bytes
/
pkg.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Do not modify this file! It was generated by ‘nixos-generate-config’
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
vim
falkon
wget
virtualbox
kate
yakuake
calligra
plasma-nm
git
zsh
oh-my-zsh
nix-zsh-completions
python3
qbittorrent
clisp
clangStdenv
wireshark
];
# shell setup
programs.bash.enableCompletion = true;
programs.zsh.enable = true;
# oh my zsh
programs.zsh.interactiveShellInit = ''
export ZSH=${pkgs.oh-my-zsh}/share/oh-my-zsh/
ZSH_THEME="gentoo"
plugins=(git)
source $ZSH/oh-my-zsh.sh
'';
programs.zsh.promptInit = ""; # Clear this to avoid a conflict with oh-my-zsh
# broadcom wifi driver
nixpkgs.config.allowUnfree = true;
}