-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsid.nix
68 lines (61 loc) · 1.14 KB
/
sid.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{ config, pkgs, ... }: {
users.extraUsers.sid = {
isNormalUser = true;
extraGroups = [ "wheel" "vboxusers" "networkmanager" "dialout" "docker" ];
shell = "${pkgs.fish}/bin/fish";
};
programs.fish.enable = true;
environment.systemPackages = with pkgs; [
gparted
meld
mosh
vim
joe
emacs
evince
unison
tmux
xfce.terminal
gitg
pidgin
pasystray
texlive.combined.scheme-full biber ghostscript
geeqie
jhead
audacity
mpv
youtube-dl
thunderbird
zip unzip p7zip unrar
wine
fgallery
filezilla
bleachbit
calc
wireshark
gensgs
openjdk icedtea8_web
wirelesstools
python2Full
(python35.withPackages(ps: with ps; [ numpy jupyter matplotlib pandas pyserial wrapt]))
putty
gnuplot
mosh
nmap-graphical
wget
];
virtualisation.docker.enable = true;
virtualisation.virtualbox.host.enable = true;
nixpkgs.config.virtualbox.enableExtensionPack = true;
hardware.opengl.driSupport32Bit = true;
services.xserver.windowManager.awesome.enable = true;
fonts = {
enableFontDir = true;
enableGhostscriptFonts = true;
fonts = with pkgs; [
inconsolata
terminus_font
lato
];
};
}