adjusting some scripts and small configs
This commit is contained in:
parent
8bc16bd6f5
commit
fc209bda6d
18 changed files with 372 additions and 81 deletions
|
@ -34,14 +34,6 @@
|
|||
# Select internationalisation properties.
|
||||
i18n.defaultLocale = "en_US.UTF-8";
|
||||
|
||||
# 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";
|
||||
VISUAL = "emacsclient -c";
|
||||
};
|
||||
|
||||
hardware.uinput.enable = true;
|
||||
|
||||
nixpkgs.config.packageOverrides = pkgs: {
|
||||
|
@ -118,8 +110,17 @@
|
|||
# Enable touchpad support (enabled default in most desktopManager).
|
||||
services.xserver.libinput.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;
|
||||
|
@ -170,6 +171,8 @@
|
|||
ydotool
|
||||
bottles
|
||||
exa
|
||||
imv
|
||||
feh
|
||||
mpv
|
||||
yt-dlp
|
||||
rofi-emoji
|
||||
|
@ -206,16 +209,21 @@
|
|||
any-nix-shell
|
||||
wtype
|
||||
xdotool
|
||||
wmctrl
|
||||
xcape
|
||||
unclutter-xfixes
|
||||
bluez-tools
|
||||
networkmanager_dmenu
|
||||
qt5ct
|
||||
lxappearance
|
||||
spotdl
|
||||
kdenlive
|
||||
ffmpeg
|
||||
wlroots
|
||||
picom-next
|
||||
pamixer
|
||||
neofetch
|
||||
afetch
|
||||
uwufetch
|
||||
screenfetch
|
||||
yafetch
|
||||
freshfetch
|
||||
disfetch
|
||||
|
@ -269,7 +277,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