From 4df485c9302f3f7422bcb4232bcb1b2548e8b6bd Mon Sep 17 00:00:00 2001 From: Wesley Irvin Date: Wed, 14 Jun 2023 20:09:24 -0400 Subject: [PATCH] Timeshift and Flakes Added in Timeshift and support for Nix Flakes. --- base-config.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/base-config.nix b/base-config.nix index 05a2bab..fea7854 100644 --- a/base-config.nix +++ b/base-config.nix @@ -119,6 +119,7 @@ btrfs-progs git nerdfonts + timeshift vim xclip zsh @@ -127,6 +128,14 @@ # List of users allowed to connect to the Nix daemon nix.settings.allowed-users = [ "wesley" ]; + # Enable Nix Flakes support (EXPERIMENTAL) + nix = { + package = pkgs.nixFlakes; + extraOptions = '' + experimental-features = nix-command flakes + ''; + }; + # Setup our ZSH shell. # First let's absolutely make sure the shell is enabled programs.zsh.enable = true;