temp
This commit is contained in:
parent
258e31048d
commit
28d1d1540b
@ -149,6 +149,7 @@ in {
|
||||
|
||||
environment = {
|
||||
systemPackages = [ btrfsDiff ];
|
||||
pathsToLink = [ "/share/zsh" ];
|
||||
persistence."/persist" = {
|
||||
directories = [ "/etc/nixos" ];
|
||||
files = [ "/etc/machine-id" ];
|
||||
|
@ -192,7 +192,7 @@ in {
|
||||
inherit font;
|
||||
};
|
||||
sway = {
|
||||
enable = false;
|
||||
enable = true;
|
||||
extraSessionCommands = ''
|
||||
export SDL_VIDEODRIVER=wayland
|
||||
# needs qt5.qtwayland in systemPackages
|
||||
@ -261,7 +261,7 @@ in {
|
||||
};
|
||||
output = {
|
||||
"*" = {
|
||||
bg = config.home.homeDirectory + "wallpaper.png" + " fill";
|
||||
bg = config.home.homeDirectory + "/wallpaper.png" + " fill";
|
||||
};
|
||||
};
|
||||
};
|
||||
@ -387,7 +387,7 @@ in {
|
||||
# xdg compliant
|
||||
dotDir = ".config/zsh";
|
||||
history.path = ".local/share/zsh/history";
|
||||
loginExtra = ''
|
||||
envExtra = ''
|
||||
export SDL_VIDEODRIVER=wayland
|
||||
# needs qt5.qtwayland in systemPackages
|
||||
export QT_QPA_PLATFORM=wayland
|
||||
@ -395,11 +395,17 @@ in {
|
||||
# Fix for some Java AWT applications (e.g. Android Studio),
|
||||
# use this if they aren't displayed properly:
|
||||
export _JAVA_AWT_WM_NONREPARENTING=1
|
||||
|
||||
'';
|
||||
loginExtra = ''
|
||||
if [ "$(${pkgs.coreutils}/bin/tty)" = "/dev/tty1" ]; then
|
||||
exec ${pkgBin "hikari"}
|
||||
fi
|
||||
'';
|
||||
initExtra = ''
|
||||
bindkey "$terminfo[kRIT5]" forward-word
|
||||
bindkey "$terminfo[kLFT5]" backward-word
|
||||
zstyle ':completion:*' menu select
|
||||
'';
|
||||
shellAliases = nixosConfig.environment.shellAliases // {
|
||||
rember = ''
|
||||
${pkgs.kakoune-unwrapped}/bin/kak -e "try %(gtd-jump-today)" "${config.home.homeDirectory}/rember/stuff$(date '+_%m_%Y').gtd"
|
||||
|
Loading…
Reference in New Issue
Block a user