31 lines
622 B
Nix
31 lines
622 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./common.nix
|
|
./graphical.nix
|
|
];
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
|
|
networking.networkmanager = {
|
|
enable = true;
|
|
plugins = with pkgs; [
|
|
networkmanager-openconnect
|
|
];
|
|
};
|
|
users.users.hms.extraGroups = [ "networkmanager" ];
|
|
|
|
services.printing.enable = true;
|
|
|
|
services.pulseaudio.enable = false;
|
|
services.pipewire = {
|
|
enable = true;
|
|
alsa.enable = true;
|
|
alsa.support32Bit = true;
|
|
pulse.enable = true;
|
|
};
|
|
|
|
console.keyMap = "fr";
|
|
}
|