summaryrefslogtreecommitdiff
path: root/nixos/configuration.nix
blob: a874d0fa06aca53278c1662f48468bc118b18fcb (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
82
83
{ 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";

  environment.pathsToLink = [ "/share/applications" "/share/xdg-desktop-portal" ];

  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";

  users.users.nantha = {
    isNormalUser = true;
    extraGroups = [ "wheel" ]; 
    packages = with pkgs; [];
  };

  environment.systemPackages = with pkgs; [
  	brightnessctl
  	alsa-utils
  	alsa-tools
  	bibata-cursors
  ];

  hardware = {
    firmware = with pkgs; [
    	linux-firmware
    	sof-firmware
    	alsa-firmware
    ];
    graphics = {
      enable = true;
      enable32Bit = true;
    };
  };
  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";
}