removed nix setting from home manager configs

This commit is contained in:
2024-11-23 11:01:50 -05:00
parent 52ff8beb28
commit ea0fd25c19
2 changed files with 2 additions and 24 deletions

View File

@@ -1,4 +1,4 @@
{ pkgs, config, ... }:
{ config, ... }:
{
imports = [
./cli
@@ -6,17 +6,6 @@
./ssh_config.nix
];
nix = {
package = pkgs.nix;
settings = {
experimental-features = [
"nix-command"
"flakes"
"ca-derivations"
];
};
};
programs = {
home-manager.enable = true;
git.enable = true;