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