maud: enable nix sandbox

This commit is contained in:
Artemis Tosini 2024-05-02 18:43:53 -04:00
parent 1ef82190d4
commit 09ba55ce2f
Signed by: artemist
SSH key fingerprint: SHA256:EsuWCwx6fjxxExxf65rX+ocQJJAdw4R1KarpFue6Uwc

View file

@ -19,7 +19,6 @@
environment.variables.EDITOR = "nvim";
services.nix-daemon.enable = true;
programs = {
fish = {
enable = true;
@ -75,7 +74,11 @@
environment.loginShell = "${pkgs.fish}/bin/fish";
nix.settings.experimental-features = "nix-command flakes";
services.nix-daemon.enable = true;
nix.settings = {
sandbox = true;
experimental-features = "nix-command flakes";
};
nixpkgs.overlays = [ inputs.lix-module.overlays.default ];