34 lines
871 B
Nix
34 lines
871 B
Nix
# 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, pkgs, ... }:
|
||
|
||
let
|
||
commonPackages = import ../common-packages.nix { inherit pkgs; };
|
||
|
||
in
|
||
{
|
||
networking.hostName = "nixos-mpb"; # Define your hostname.
|
||
|
||
imports =
|
||
[ # Common configuration
|
||
../common-configuration.nix
|
||
# Include the results of the hardware scan.
|
||
./hardware-configuration.nix
|
||
];
|
||
|
||
# Configure keymap in X11
|
||
services.xserver.xkbVariant = "fr_mac";
|
||
|
||
# Enable touchpad support (enabled default in most desktopManager).
|
||
services.xserver.libinput.enable = true;
|
||
|
||
nixpkgs.config.permittedInsecurePackages = [
|
||
"openssl-1.1.1u"
|
||
];
|
||
|
||
environment.systemPackages = with pkgs; [
|
||
] ++ commonPackages;
|
||
}
|