Compare commits

..

No commits in common. "3751997d334e8181bb9736cd10cd0dac95713c6a" and "38200052f951e70f2f82f47b34a1f1c818ed4bbc" have entirely different histories.

2 changed files with 2 additions and 15 deletions

View file

@ -51,6 +51,7 @@ in {
environment = {
systemPackages = with pkgs; [
agenix.packages.${pkgs.system}.default
neovim
git
curl
@ -90,7 +91,6 @@ in {
nix = {
package = pkgs.lix;
channel.enable = false;
gc = {
automatic = true;
@ -104,18 +104,10 @@ in {
u.flake = camasca;
};
# give nix daemon lower priority
daemonCPUSchedPolicy = "batch";
daemonIOSchedClass = "idle";
settings = {
auto-optimise-store = true;
experimental-features = ["nix-command" "flakes"];
trusted-users = ["root" "@wheel"];
connect-timeout = 5; # fail fast if substituters are not available
builders-use-substitutes = true;
log-lines = 25;
min-free = 512 * 1024 * 1024; # if free space drops under min, gc
substituters = [
"https://uku3lig.cachix.org"

View file

@ -5,7 +5,6 @@
self,
flake-parts,
nixinate,
agenix,
...
} @ inputs:
flake-parts.lib.mkFlake {inherit inputs;} {
@ -24,11 +23,7 @@
devShells.default = with pkgs;
mkShellNoCC {
packages = [
just
statix
agenix.packages.${system}.default
];
packages = [just statix];
};
formatter = pkgs.alejandra;