Skip to content

Commit

Permalink
Replace absolute path with relative
Browse files Browse the repository at this point in the history
  • Loading branch information
arunoruto committed May 26, 2024
1 parent 48d78ff commit 6f902fd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nixos/hosts/kyuubi/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
}: let
# monitorsXmlContent = builtins.readFile /home/mar/.config/monitors.xml;
# monitorsConfig = pkgs.writeText "gdm_monitors.xml" monitorsXmlContent;
monitorsConfig = pkgs.writeText "gdm_monitors.xml" (builtins.readFile /home/mar/.config/monitors.xml);
# monitorsConfig = pkgs.writeText "gdm_monitors.xml" (builtins.readFile /home/${username}/.config/monitors.xml);
monitorsConfig = pkgs.writeText "gdm_monitors.xml" (builtins.readFile ~/.config/monitors.xml);
in {
imports = [
./hardware-configuration.nix
Expand Down

0 comments on commit 6f902fd

Please sign in to comment.