From fb8a0810ffe24ef50f6ca5e6b8393f39213b8ee9 Mon Sep 17 00:00:00 2001 From: Benson Chu Date: Thu, 7 Dec 2023 19:29:26 -0600 Subject: [PATCH] WE SHOULDN'T DO THIS User activated scripts run on every startup --- hosts/NixFrame/configuration.nix | 1 + hosts/NixFrame/home-git-repos.nix | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 hosts/NixFrame/home-git-repos.nix diff --git a/hosts/NixFrame/configuration.nix b/hosts/NixFrame/configuration.nix index d14a00b..45531f0 100644 --- a/hosts/NixFrame/configuration.nix +++ b/hosts/NixFrame/configuration.nix @@ -6,6 +6,7 @@ in { imports = [ + # ./home-git-repos.nix ../../common-configuration.nix # Include the results of the hardware scan. ./hardware-configuration.nix diff --git a/hosts/NixFrame/home-git-repos.nix b/hosts/NixFrame/home-git-repos.nix new file mode 100644 index 0000000..2e273a0 --- /dev/null +++ b/hosts/NixFrame/home-git-repos.nix @@ -0,0 +1,6 @@ +{ config, pkgs, ... }: +{ + system.userActivationScripts = { + + } +}