adjusting some scripts and small configs
This commit is contained in:
parent
8bc16bd6f5
commit
fc209bda6d
18 changed files with 372 additions and 81 deletions
|
@ -81,8 +81,17 @@
|
|||
services.usbmuxd.enable = true;
|
||||
services.fstrim.enable = true;
|
||||
|
||||
# Set default shell to be dash for speed
|
||||
# Apparently this is bad because a lot of nix relies on bash
|
||||
# environment.binsh = "${pkgs.dash}/bin/dash";
|
||||
environment.variables = {
|
||||
EDITOR = "emacsclient -t -a";
|
||||
VISUAL = "emacsclient -c -a";
|
||||
};
|
||||
environment.homeBinInPath = true;
|
||||
programs.fish.enable = true;
|
||||
programs.zsh.enable = true;
|
||||
|
||||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||||
users.users.chris = {
|
||||
isNormalUser = true;
|
||||
|
@ -133,6 +142,8 @@
|
|||
ydotool
|
||||
bottles
|
||||
exa
|
||||
imv
|
||||
feh
|
||||
mpv
|
||||
yt-dlp
|
||||
rofi-emoji
|
||||
|
@ -169,12 +180,19 @@
|
|||
any-nix-shell
|
||||
wtype
|
||||
xdotool
|
||||
wmctrl
|
||||
xcape
|
||||
unclutter-xfixes
|
||||
bluez-tools
|
||||
networkmanager_dmenu
|
||||
qt5ct
|
||||
lxappearance
|
||||
spotdl
|
||||
kdenlive
|
||||
ffmpeg
|
||||
wlroots
|
||||
picom-next
|
||||
pamixer
|
||||
blender
|
||||
neofetch
|
||||
# Dev tools
|
||||
|
@ -223,7 +241,7 @@
|
|||
|
||||
services.emacs = {
|
||||
enable = true;
|
||||
package = with pkgs; ((emacsPackagesFor emacsPgtkNativeComp).emacsWithPackages (epkgs: [ epkgs.vterm epkgs.magit epkgs.pdf-tools ]));
|
||||
package = with pkgs; ((emacsPackagesFor emacsPgtkNativeComp).emacsWithPackages (epkgs: [ epkgs.vterm epkgs.magit epkgs.pdf-tools pkgs.mu ]));
|
||||
};
|
||||
|
||||
# Some programs need SUID wrappers, can be configured further or are
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue