blob: f34cd8fd31e5f2e89bb23d7fb616cf2507e40ce6 (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
{ config, pkgs, ... }:
{
imports =[
# names are self explanatory
./adguard
./fonts
./gnupg
./i18n
./nh
./pipewire
./searx
./ssh
./users
./xserver
];
nix = {
settings = {
# Enable flakes
experimental-features = [ "nix-command" "flakes" ];
# Optimize storage
auto-optimise-store = true;
};
};
# Allow unfree packages
nixpkgs = {
config.allowUnfree = true;
};
# 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.