summary refs log tree commit diff stats
path: root/flake.nix
diff options
context:
space:
mode:
authorAlan Pearce2023-04-12 17:05:00 +0200
committerAlan Pearce2023-04-12 17:05:00 +0200
commit32a6944ea78623253aeedf9fc336c317f5e91eb7 (patch)
treee3a5e54e1be51e862a76899be051e9a97e88276e /flake.nix
parentee51c126d95515cc6bc4c5109a225ccf559dc516 (diff)
downloadnixfiles-32a6944ea78623253aeedf9fc336c317f5e91eb7.tar.lz
nixfiles-32a6944ea78623253aeedf9fc336c317f5e91eb7.tar.zst
nixfiles-32a6944ea78623253aeedf9fc336c317f5e91eb7.zip
Fix url type warning in flake config
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/flake.nix b/flake.nix
index 943aa4e7..03b27092 100644
--- a/flake.nix
+++ b/flake.nix
@@ -1,12 +1,12 @@
 {
   inputs = {
-    nixpkgs.url = github:NixOS/nixpkgs/nixos-unstable;
-    nixos-hardware.url = github:NixOS/nixos-hardware;
-    darwin.url = github:lnl7/nix-darwin/master;
+    nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
+    nixos-hardware.url = "github:NixOS/nixos-hardware";
+    darwin.url = "github:lnl7/nix-darwin/master";
     darwin.inputs.nixpkgs.follows = "nixpkgs";
-    home-manager.url = github:nix-community/home-manager;
+    home-manager.url = "github:nix-community/home-manager";
     home-manager.inputs.nixpkgs.follows = "nixpkgs";
-    emacs-overlay.url = github:nix-community/emacs-overlay;
+    emacs-overlay.url = "github:nix-community/emacs-overlay";
     emacs-overlay.inputs.nixpkgs.follows = "nixpkgs";
     secrets = {
       flake = false;