From a67a4f5826a1422bd4ed078e9ebe147cb4a54be5 Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Thu, 7 Aug 2025 11:07:01 +0200 Subject: [PATCH] fix(gampo): correctly set dotfiles location --- users/phundrak/host/gampo.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/users/phundrak/host/gampo.nix b/users/phundrak/host/gampo.nix index 25e8a35..d22918d 100644 --- a/users/phundrak/host/gampo.nix +++ b/users/phundrak/host/gampo.nix @@ -1,11 +1,10 @@ {config, ...}: { imports = [../home.nix]; home = { - cli.nh.flake = "${config.home.homeDirectory}/nixos"; + cli.nh.flake = "${config.home.homeDirectory}/.dotfiles"; desktop.hyprland.host = "gampo"; phundrak.sshKey = { content = builtins.readFile ../../../keys/id_gampo.pub; - # file = "${config.home.homeDirectory}/.ssh/id_ed25519.pub"; }; }; }