fix: change ./file imports to ./file.nix

This commit is contained in:
Infinidoge 2021-09-08 09:47:43 -04:00
parent 4fee15ce51
commit 15763e5d49
2 changed files with 2 additions and 2 deletions

View file

@ -1 +1 @@
{ imports = [ ./zsh ]; }
{ imports = [ ./zsh.nix ]; }

View file

@ -1,5 +1,5 @@
{ pkgs, ... }: {
imports = [ ./xserver ];
imports = [ ./xserver.nix ];
services.xserver.windowManager.qtile.enable = true;