blob: 5a8d80e2662fa2f92e77635f4b44507398c74fc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{ config, pkgs, ... }:
{
nix = {
settings = {
# Enable flakes
experimental-features = [ "nix-command" "flakes" ];
# Optimize storage
auto-optimise-store = true;
# substituters = lib.mkForce [ ];
# trusted-substituters = lib.mkForce [ ];
# require-sigs = false;
};
};
# List packages installed in system profile.
# These should be tools in case user tools brake.
# To search, run:
# $ nix search <pkgname>
# or
# $ nh search <pkgname>
environment.systemPackages = with pkgs; [
alacritty
git
helix
xdg-utils
];
}
|
; all rights regarding Text and Data Mining (TDM) are reserved.