Skip to content

Commit

Permalink
fix(nix): env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
cliarena committed May 7, 2024
1 parent 9b7d3ce commit 14deb28
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nix/wolf.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{ pkgs, self, deps, ... }:
let
wolf_folder = /etc/wolf;
wolf_cfg_folder = ${wolf_folder}/cfg;
wolf_state_folder = ${wolf_folder}/state;
wolf_folder = "/etc/wolf";
wolf_cfg_folder = "${wolf_folder}/cfg";
wolf_state_folder = "${wolf_folder}/state";
fake-udev = pkgs.stdenv.mkDerivation {
pname = "fake-udev";
version = "1.0";
Expand Down

0 comments on commit 14deb28

Please sign in to comment.