-busybox + coreutils
This commit is contained in:
parent
80c1f85681
commit
23745eb5b1
|
@ -18,8 +18,8 @@
|
|||
};
|
||||
home.packages = with pkgs; [
|
||||
bc
|
||||
busybox
|
||||
comma
|
||||
coreutils
|
||||
direnv
|
||||
exa
|
||||
fd
|
||||
|
|
|
@ -24,6 +24,7 @@ in {
|
|||
set -x WEBKIT_DISABLE_COMPOSITING_MODE 1
|
||||
set -x EDITOR emacsclient
|
||||
set -x VISUAL emacsclient
|
||||
set -x TERMINAL alacritty
|
||||
set -x XDG_DATA_HOME $HOME/.local/share
|
||||
set -x FZF_ALT_C_COMMAND fd --type d --exclude .git --follow --hidden
|
||||
set -x FZF_DEFAULT_COMMAND fd --type f --exclude .git --follow --hidden
|
||||
|
|
|
@ -12,7 +12,7 @@ in {
|
|||
|
||||
programs.password-store = {
|
||||
enable = true;
|
||||
package = pkgs.pass.withExtensions (exts: [ exts.pass-otp exts.pass-import ]);
|
||||
package = pkgs.pass-wayland.withExtensions (exts: [ exts.pass-otp exts.pass-import ]);
|
||||
};
|
||||
programs.gpg = { enable = true; };
|
||||
services.gpg-agent = {
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
NIXOS_OZONE_WL = "1";
|
||||
EDITOR = "emacs";
|
||||
VISUAL = "emacs";
|
||||
TERMINAL = "alacritty";
|
||||
QT_QPA_PLATFORM = "wayland";
|
||||
XDG_CONFIG_HOME = "\${HOME}/.config";
|
||||
XDG_BIN_HOME = "\${HOME}/.local/bin";
|
||||
|
|
|
@ -131,7 +131,9 @@ in {
|
|||
};
|
||||
optimise.automatic = true;
|
||||
};
|
||||
|
||||
systemd.extraConfig = ''
|
||||
DefaultTimeoutStopSec=10s
|
||||
'';
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
# This value determines the NixOS release from which the default
|
||||
|
|
Loading…
Reference in New Issue