feat/nix #3
2 changed files with 6 additions and 1 deletions
|
@ -9,6 +9,6 @@ export XDG_CONFIG_HOME="${HOME}/.config"
|
||||||
# Execution
|
# Execution
|
||||||
exec ssh-agent \
|
exec ssh-agent \
|
||||||
dbus-launch --exit-with-session \
|
dbus-launch --exit-with-session \
|
||||||
/usr/bin/Hyprland \
|
hyprland \
|
||||||
"$@"
|
"$@"
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,11 @@
|
||||||
}: {
|
}: {
|
||||||
home.file = {
|
home.file = {
|
||||||
".config/hypr/hyprland.conf.d".source = ./hyprland.conf.d;
|
".config/hypr/hyprland.conf.d".source = ./hyprland.conf.d;
|
||||||
|
# Hyprland launch wrapper
|
||||||
|
".local/bin/Hyprland" = {
|
||||||
|
source = ../../bin/Hyprland;
|
||||||
|
executable = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
home.packages = [
|
home.packages = [
|
||||||
|
|
Loading…
Reference in a new issue