refactor: remove s from config path
This commit is contained in:
parent
35b0135dd7
commit
e00412252a
32 changed files with 5 additions and 5 deletions
|
@ -14,6 +14,6 @@ done
|
||||||
for element in "${array[@]}"
|
for element in "${array[@]}"
|
||||||
do
|
do
|
||||||
if [[ "$element" != "tablet-toggle" ]]; then
|
if [[ "$element" != "tablet-toggle" ]]; then
|
||||||
$HOME/.nix/configs/eww/scripts/close.sh "$element"
|
$EWW_PATH/close.sh "$element"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
|
@ -1,7 +1,7 @@
|
||||||
{ config, ... }:
|
{ config, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
configDir = "/home/matt/.nix/configs";
|
configDir = "/home/matt/.nix/config";
|
||||||
in
|
in
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ pkgs, config, ... }: let
|
{ pkgs, config, ... }: let
|
||||||
|
|
||||||
configDir = "/home/matt/.nix/configs";
|
configDir = "/home/matt/.nix/config";
|
||||||
|
|
||||||
flake-compat = builtins.fetchTarball "https://github.com/edolstra/flake-compat/archive/master.tar.gz";
|
flake-compat = builtins.fetchTarball "https://github.com/edolstra/flake-compat/archive/master.tar.gz";
|
||||||
|
|
||||||
|
@ -32,8 +32,8 @@ in
|
||||||
env = XDG_DATA_DIRS, ${pkgs.gsettings-desktop-schemas}/share/gsettings-schemas/${pkgs.gsettings-desktop-schemas.name}:${pkgs.gtk3}/share/gsettings-schemas/${pkgs.gtk3.name}:$XDG_DATA_DIRS
|
env = XDG_DATA_DIRS, ${pkgs.gsettings-desktop-schemas}/share/gsettings-schemas/${pkgs.gsettings-desktop-schemas.name}:${pkgs.gtk3}/share/gsettings-schemas/${pkgs.gtk3.name}:$XDG_DATA_DIRS
|
||||||
$kora = "$HOME/.config/share"
|
$kora = "$HOME/.config/share"
|
||||||
|
|
||||||
env = EWW_PATH, $HOME/.nix/configs/eww/scripts
|
env = EWW_PATH, ${configDir}/eww/scripts
|
||||||
env = HYPR_PATH, $HOME/.nix/configs/hypr/scripts
|
env = HYPR_PATH, ${configDir}/hypr/scripts
|
||||||
|
|
||||||
exec-once = ${pkgs.plasma5Packages.polkit-kde-agent}/libexec/polkit-kde-authentication-agent-1
|
exec-once = ${pkgs.plasma5Packages.polkit-kde-agent}/libexec/polkit-kde-authentication-agent-1
|
||||||
source = ~/.config/hypr/main.conf
|
source = ~/.config/hypr/main.conf
|
||||||
|
|
Loading…
Reference in a new issue