From 15763e5d4967f4c21e76e09cec4e51b51cda7d53 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Wed, 8 Sep 2021 09:47:43 -0400 Subject: [PATCH] fix: change ./file imports to ./file.nix --- profiles/develop/common.nix | 2 +- profiles/graphical/qtile.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/profiles/develop/common.nix b/profiles/develop/common.nix index 6a89d42..faed268 100644 --- a/profiles/develop/common.nix +++ b/profiles/develop/common.nix @@ -1 +1 @@ -{ imports = [ ./zsh ]; } +{ imports = [ ./zsh.nix ]; } diff --git a/profiles/graphical/qtile.nix b/profiles/graphical/qtile.nix index 527af49..e776e47 100644 --- a/profiles/graphical/qtile.nix +++ b/profiles/graphical/qtile.nix @@ -1,5 +1,5 @@ { pkgs, ... }: { - imports = [ ./xserver ]; + imports = [ ./xserver.nix ]; services.xserver.windowManager.qtile.enable = true;