aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-06-09 12:25:27 +0000
committerFuwn <[email protected]>2021-06-09 12:25:27 +0000
commit6c516b132bd58c11a2380a28b2db2b2e6b81bc52 (patch)
tree0bc4b9bd6f0dac69ae84365f0013cdd343b84712 /shell.nix
parentrefactor(config): rename `Whirl.toml` to `Config.toml` (diff)
downloadwhirl-6c516b132bd58c11a2380a28b2db2b2e6b81bc52.tar.xz
whirl-6c516b132bd58c11a2380a28b2db2b2e6b81bc52.zip
refactor(database): rename database file
The file name `whirl.sqlite3` is redundant as the file is already in the `.whirl` directory. BREAKING CHANGE: Database file renamed
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell.nix b/shell.nix
index a9c0c19..51c1342 100644
--- a/shell.nix
+++ b/shell.nix
@@ -27,7 +27,7 @@ in pkgs.mkShell {
niv
];
- DATABASE_URL = ".whirl/whirl.sqlite3";
+ DATABASE_URL = ".whirl/db.sqlite3";
RUST_SRC_PATH = "${pkgs.latest.rustChannels.nightly.rust-src}/lib/rustlib/src/rust/library";
RUST_BACKTRACE = "1";
}