blob: bf4ca143e6dc3bfbaadc1b6515c1e6d8092873f7 (
plain) (
blame)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
|
{ secrets, lib, pkgs, config, hostname, inputs, user, ... }: {
imports = [
../modules/doas
../modules/pipewire
../modules/xorg
../modules/fonts
../modules/virtualisation
];
# Use the GRUB 2 boot loader.
boot.loader.grub.enable = true;
boot.loader.grub.version = 2;
boot.loader.grub.splashImage = null;
# boot.loader.grub.efiSupport = true;
# boot.loader.grub.efiInstallAsRemovable = true;
# boot.loader.efi.efiSysMountPoint = "/boot/efi";
boot.loader.timeout = 0;
# Set your time zone.
time.timeZone = "Europe/Madrid";
networking.hostName = hostname; # Define your hostname.
networking.extraHosts = builtins.readFile ../dotfiles/hosts;
networking.nameservers = [ "9.9.9.9" ];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.enp0s3.useDHCP = lib.mkDefault true;
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";
# Enable CUPS to print documents.
# services.printing.enable = true;
users.mutableUsers = false;
# Define a user account. Don't forget to set a password with ‘passwd’.
users.users.baitinq = {
isNormalUser = true;
extraGroups = [ "wheel" "audio" "video" ]; # Enable ‘sudo’ for the user.
hashedPassword = secrets.baitinq_hashed_password;
};
environment.variables = {
TERMINAL = "st";
EDITOR = "nvim";
VISUAL = "nvim";
};
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
lm_sensors
pulseaudio # used for tools
python
killall
wget
nano
git
fzf
htop
pfetch
unzip
yt-dlp
lf
usbutils
pciutils
gnupg
git-crypt
neovim
];
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
# programs.mtr.enable = true;
programs.gnupg.agent = {
enable = true;
#enableSSHSupport = true; #look at this
};
# List services that you want to enable:
# Enable the OpenSSH daemon.
services.openssh.enable = true;
services.openssh.listenAddresses = [{
addr = "0.0.0.0";
port = 2222;
}];
programs.ssh.askPassword = "";
programs.ssh.startAgent = true;
programs.ssh.extraConfig = ''
AddKeysToAgent yes
'';
programs.firejail.enable = true;
programs.firejail.wrappedBinaries = {
discord-wrapped = {
executable = "${lib.getBin pkgs.discord}/bin/discord";
profile = "${pkgs.firejail}/etc/firejail/discord.profile";
};
};
nix = {
settings.auto-optimise-store = true;
gc = {
automatic = true;
dates = "daily";
options = "-d";
};
};
# Open ports in the firewall.
networking.firewall.allowedTCPPorts = [ 2222 ];
# networking.firewall.allowedUDPPorts = [ ... ];
# Or disable the firewall altogether.
networking.firewall.enable = true;
# Copy the NixOS configuration file and link it from the resulting system
# (/run/current-system/configuration.nix). This is useful in case you
# accidentally delete configuration.nix.
#system.copySystemConfiguration = true;
nix = {
package = pkgs.nixFlakes;
extraOptions = "experimental-features = nix-command flakes";
maxJobs = "auto";
buildCores = 0;
};
lib.formatter.x86_64-linux = pkgs.nixpkgs-fmt;
hardware.enableRedistributableFirmware = true;
hardware.cpu.intel.updateMicrocode = true;
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. It‘s perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "22.05"; # Did you read the comment?
}
|