Compare commits

...

2 commits

Author SHA1 Message Date
Artemis Tosini 6264f29395
maud: fix cp 2024-05-03 00:28:40 -04:00
Artemis Tosini 09ba55ce2f
maud: enable nix sandbox 2024-05-03 00:28:38 -04:00
2 changed files with 5 additions and 3 deletions

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 ];

View file

@ -6,7 +6,6 @@
shellAliases = {
cat = "bat";
ls = "eza";
cp = "cp --reflink=auto --sparse=always";
nix-fish = "nix-shell --command fish";
};
};