Some cleaning AND got crda working
This commit is contained in:
parent
42cb7eac04
commit
745cc894e9
2 changed files with 10 additions and 14 deletions
|
@ -27,18 +27,17 @@
|
|||
systemPackages = with pkgs; [
|
||||
wget emacs
|
||||
mplayer
|
||||
zathura viewnior
|
||||
zathura
|
||||
chromium qutebrowser
|
||||
optipng gimp
|
||||
oh-my-zsh stow
|
||||
lemonbar git st
|
||||
nethogs
|
||||
(import ./vim.nix)
|
||||
(texlive.combine { inherit (texlive) scheme-small latexmk bibtex; }) #for vimtex
|
||||
ghostscript
|
||||
pavucontrol
|
||||
dell-530cdn
|
||||
arandr
|
||||
crda # WiFi regulatory domains
|
||||
];
|
||||
};
|
||||
|
||||
|
@ -121,6 +120,7 @@
|
|||
};
|
||||
|
||||
services = {
|
||||
udev.packages = with pkgs; [ crda ];
|
||||
peerflix = {
|
||||
enable = true;
|
||||
stateDir = "/tmp/peerflix";
|
||||
|
@ -219,11 +219,6 @@
|
|||
motd = "Death to the DeathStar";
|
||||
};
|
||||
|
||||
# Extra fonts
|
||||
fonts.fonts = with pkgs; [
|
||||
tewi-font
|
||||
];
|
||||
|
||||
# Rasvaton / Fet-fri
|
||||
nix.gc.automatic = true;
|
||||
nix.gc.options = "--delete-older-than 1w";
|
||||
|
|
13
mail.nix
13
mail.nix
|
@ -1,10 +1,11 @@
|
|||
# Mail stack:
|
||||
# Read and write emails neomutt
|
||||
# Receive emails & synchronize maildir offlineimap
|
||||
# Submit emails to send msmtp
|
||||
# dealing with MIME encoded email packages ripmime
|
||||
# Display HTML emails w3m
|
||||
# Search maildirs mu
|
||||
# Display maildirs and read emails -> neomutt
|
||||
# Write emails -> vim (should already be there)
|
||||
# Receive emails & synchronize maildir -> offlineimap
|
||||
# Submit emails to send -> msmtp
|
||||
# Deal with MIME encoded email packages -> ripmime
|
||||
# Display HTML emails -> w3m
|
||||
# Search maildirs -> mu
|
||||
# and various automation provided by systemd
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
|
|
Loading…
Reference in a new issue