2021-04-16 21:33:48 +02:00
|
|
|
|
# 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’).
|
|
|
|
|
|
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
let
|
|
|
|
|
secrets = config.my.secrets;
|
|
|
|
|
in
|
|
|
|
|
{
|
|
|
|
|
imports =
|
|
|
|
|
[ # Include the results of the hardware scan.
|
|
|
|
|
./hardware-configuration.nix
|
2021-04-19 14:29:38 +02:00
|
|
|
|
|
|
|
|
|
./home.nix
|
2021-04-16 21:33:48 +02:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
# Use the systemd-boot EFI boot loader.
|
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
|
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
|
|
|
|
|
|
services.btrfs = {
|
|
|
|
|
autoScrub = {
|
|
|
|
|
enable = true;
|
|
|
|
|
fileSystems = [ "/" ];
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
networking.hostName = "boreal"; # Define your hostname.
|
|
|
|
|
networking.domain = "alarsyo.net";
|
|
|
|
|
|
|
|
|
|
# Set your time zone.
|
|
|
|
|
time.timeZone = "Europe/Paris";
|
|
|
|
|
|
|
|
|
|
# The global useDHCP flag is deprecated, therefore explicitly set to false here.
|
|
|
|
|
# Per-interface useDHCP will be mandatory in the future, so this generated config
|
|
|
|
|
# replicates the default behaviour.
|
|
|
|
|
networking.interfaces.enp7s0.useDHCP = true;
|
|
|
|
|
networking.interfaces.wlp3s0.useDHCP = true;
|
|
|
|
|
|
|
|
|
|
# List services that you want to enable:
|
|
|
|
|
my.services = {
|
2021-04-16 21:57:08 +02:00
|
|
|
|
wireguard = {
|
2021-04-19 19:01:09 +02:00
|
|
|
|
enable = false;
|
2021-04-16 21:57:08 +02:00
|
|
|
|
iface = "wg";
|
|
|
|
|
port = 51820;
|
|
|
|
|
|
|
|
|
|
net = {
|
|
|
|
|
v4 = {
|
|
|
|
|
subnet = "10.0.0";
|
|
|
|
|
mask = 24;
|
|
|
|
|
};
|
|
|
|
|
v6 = {
|
|
|
|
|
subnet = "fd42:42:42";
|
|
|
|
|
mask = 64;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
2021-04-16 21:33:48 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
services = {
|
|
|
|
|
openssh = {
|
|
|
|
|
enable = true;
|
|
|
|
|
permitRootLogin = "no";
|
|
|
|
|
passwordAuthentication = false;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
xserver = {
|
|
|
|
|
enable = true;
|
2021-04-17 17:30:56 +02:00
|
|
|
|
videoDrivers = [ "nvidia" ];
|
2021-04-22 03:32:36 +02:00
|
|
|
|
displayManager.sddm.enable = true;
|
2021-04-16 21:33:48 +02:00
|
|
|
|
windowManager.i3.enable = true;
|
|
|
|
|
layout = "fr";
|
|
|
|
|
xkbVariant = "us";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
sound.enable = true;
|
2021-04-17 03:15:44 +02:00
|
|
|
|
hardware.pulseaudio = {
|
|
|
|
|
enable = true;
|
|
|
|
|
extraModules = [ pkgs.pulseaudio-modules-bt ];
|
|
|
|
|
package = pkgs.pulseaudioFull;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
hardware.bluetooth = {
|
|
|
|
|
enable = true;
|
|
|
|
|
powerOnBoot = true;
|
|
|
|
|
};
|
2021-04-16 21:33:48 +02:00
|
|
|
|
}
|