-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.nix
55 lines (40 loc) · 1.42 KB
/
configuration.nix
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
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running ‘nixos-help’).
{ inputs, ... }:
{
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix
./packages.nix
./modules/bundle.nix
];
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
nix.settings.auto-optimise-store = true;
programs.dconf.enable = true;
networking.hostName = "nixos"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# Enable networking
networking.networkmanager.enable = true;
# Set your time zone.
time.timeZone = "Europe/Athens";
# Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "el_GR.UTF-8";
LC_IDENTIFICATION = "el_GR.UTF-8";
LC_MEASUREMENT = "el_GR.UTF-8";
LC_MONETARY = "el_GR.UTF-8";
LC_NAME = "el_GR.UTF-8";
LC_NUMERIC = "el_GR.UTF-8";
LC_PAPER = "el_GR.UTF-8";
LC_TELEPHONE = "el_GR.UTF-8";
LC_TIME = "el_GR.UTF-8";
};
# Enable CUPS to print documents.
services.printing.enable = true;
system.stateVersion = "24.05"; # Did you read the comment?
}