Compare commits

...

4 commits

Author SHA1 Message Date
b825d0dda3 improve desktop environ 2020-09-08 18:50:44 +02:00
fe0b28873b openssl support for rust 2020-09-08 18:48:57 +02:00
e62ea973cb tcpdump 2020-09-08 18:48:32 +02:00
0cf2791432 more powermanagement 2020-09-08 18:48:15 +02:00
4 changed files with 23 additions and 6 deletions

View file

@ -12,6 +12,7 @@
];
services.tlp.enable = true;
powerManagement.powertop.enable = true;
systemd.tmpfiles.rules = [
"w /sys/class/drm/card0/device/power_dpm_force_performance_level - - - - low"
];

View file

@ -16,6 +16,7 @@ in {
ncdu
openssl
ripgrep
tcpdump
tmux
z-lua
unstable.starship

View file

@ -57,21 +57,28 @@ in {
mesa
librsvg
unstable.mypaint
unstable.mypaint-brushes
mypaint
mypaint-brushes
capitaine-cursors
elementary-xfce-icon-theme
hicolor-icon-theme
numix-icon-theme
alacritty
imv
inkscape
libreoffice
libsecret
lxappearance
mumble
mumble
neofetch
pavucontrol
pulseaudio
pulsemixer
unstable.keepassxc
wl-clipboard
xfce.thunar
(
pkgs.writeTextFile {
name = "startsway";
@ -92,6 +99,11 @@ in {
)
];
services.gvfs = {
enable = true;
package = lib.mkForce pkgs.gnome3.gvfs;
};
services.syncthing = {
enable = true;
openDefaultPorts = true;

View file

@ -7,16 +7,19 @@ let
unstable = import <nixos-unstable> {};
in {
environment.systemPackages = with pkgs; [
emacs
go
python37
python37Packages.pyls-black
python37Packages.pyls-isort
python37Packages.pyls-mypy
rustup
sops
tig
unstable.gopls
unstable.rust-analyzer
emacs
sops
tig
openssl pkg-config nasm cmake zlib gcc binutils-unwrapped
];
}