From 733cda2cf2f17873e1b1846d3dce9bb04400575d Mon Sep 17 00:00:00 2001 From: Chan Wen Xu Date: Sat, 11 Sep 2021 22:00:40 +0800 Subject: [PATCH] feat: Symlink nixos and projects from persist to home --- config/common.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config/common.nix b/config/common.nix index b15e885..36c6394 100644 --- a/config/common.nix +++ b/config/common.nix @@ -42,6 +42,11 @@ networking.networkmanager.enable = true; networking.dhcpcd.wait = "background"; # Don't wait and immediately go to background. + systemd.tmpfiles.rules = [ + "L /home/chanbakjsd/nixos - - - - /persist/nix-config" + "L /home/chanbakjsd/Projects - - - - /persist/Projects" + ]; + services.xserver = { enable = true; displayManager.sddm.enable = true;