Timeshift and Flakes

Added in Timeshift and support for Nix Flakes.
This commit is contained in:
Wesley Irvin
2023-06-14 20:09:24 -04:00
parent 88136e2082
commit 4df485c930

View File

@@ -119,6 +119,7 @@
btrfs-progs btrfs-progs
git git
nerdfonts nerdfonts
timeshift
vim vim
xclip xclip
zsh zsh
@@ -127,6 +128,14 @@
# List of users allowed to connect to the Nix daemon # List of users allowed to connect to the Nix daemon
nix.settings.allowed-users = [ "wesley" ]; nix.settings.allowed-users = [ "wesley" ];
# Enable Nix Flakes support (EXPERIMENTAL)
nix = {
package = pkgs.nixFlakes;
extraOptions = ''
experimental-features = nix-command flakes
'';
};
# Setup our ZSH shell. # Setup our ZSH shell.
# First let's absolutely make sure the shell is enabled # First let's absolutely make sure the shell is enabled
programs.zsh.enable = true; programs.zsh.enable = true;