From 1df2c89a5af02f577fc6c29508da5ecd14972f2e Mon Sep 17 00:00:00 2001 From: pegasust Date: Tue, 8 Nov 2022 08:20:48 -0700 Subject: [PATCH] add hwtr config --- home-nix/hwtr/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 home-nix/hwtr/default.nix diff --git a/home-nix/hwtr/default.nix b/home-nix/hwtr/default.nix new file mode 100644 index 0000000..8ea36b5 --- /dev/null +++ b/home-nix/hwtr/default.nix @@ -0,0 +1,6 @@ +{ config, pkgs,... }@input: +{ + home.user = "hwtr"; + home.homeDirectory = "/home/hwtr"; + module = [./../common]; +}