blob: fe54d08a219ca0fa3e63f21bf9213f7a3715cd0c (
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
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
|
{ inputs, config, lib, pkgs, ... }:
{
imports =
[
./hardware-configuration.nix
];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.kernelPackages = pkgs.linuxPackages_latest;
networking.hostName = "calamity";
networking.networkmanager.enable = true;
time.timeZone = "Europe/Paris";
i18n.defaultLocale = "fr_FR.UTF-8";
console = {
font = "Lat2-Terminus16";
keyMap = "fr";
};
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
jack.enable = true;
wireplumber.enable = true;
};
services.libinput.enable = true;
#services.getty.autologinUser = "nantha";
programs.hyprland = {
enable = true;
xwayland.enable = true;
};
users.users.nantha = {
isNormalUser = true;
extraGroups = [ "wheel" ];
packages = with pkgs; [];
};
environment.systemPackages = with pkgs; [
brightnessctl
xdg-user-dirs
alsa-utils
alsa-tools
];
hardware.firmware = with pkgs; [
linux-firmware
sof-firmware
alsa-firmware
];
fonts = {
enableDefaultPackages = true;
packages = with pkgs; [
nerd-fonts._0xproto
];
};
services.openssh.enable = true;
networking.firewall.allowedTCPPorts = [ ];
networking.firewall.allowedUDPPorts = [ ];
networking.firewall.enable = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
system.stateVersion = "26.05";
}
|