2020-06-25 23:05:30 -07:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
hostname = "atom";
|
|
|
|
|
|
|
|
in {
|
|
|
|
|
|
|
|
imports = [
|
|
|
|
../defaults.nix
|
|
|
|
../hardware-configuration.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
boot.loader.grub.enable = true;
|
|
|
|
boot.loader.grub.version = 2;
|
|
|
|
boot.loader.grub.device = "/dev/sda";
|
|
|
|
|
|
|
|
networking.hostName = hostname;
|
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
glxinfo
|
|
|
|
hll2380dw-cups
|
|
|
|
usbutils
|
|
|
|
];
|
|
|
|
|
|
|
|
fudo.common = {
|
|
|
|
profile = "laptop";
|
|
|
|
site = "seattle";
|
|
|
|
};
|
|
|
|
|
|
|
|
hardware.cpu.amd.updateMicrocode = true;
|
|
|
|
|
|
|
|
programs = {
|
|
|
|
bash.enableCompletion = true;
|
|
|
|
};
|
|
|
|
|
2020-07-16 14:55:00 -07:00
|
|
|
fudo.laptop.use-network-manager = false;
|
2020-07-23 22:39:31 -07:00
|
|
|
fudo.common.enable-gui = true;
|
2020-06-25 23:05:30 -07:00
|
|
|
|
|
|
|
hardware.opengl.driSupport32Bit = true;
|
|
|
|
hardware.opengl.extraPackages32 = with pkgs.pkgsi686Linux; [ libva ];
|
|
|
|
hardware.opengl.driSupport = true;
|
|
|
|
|
|
|
|
hardware.pulseaudio.support32Bit = true;
|
|
|
|
|
|
|
|
hardware.bluetooth.enable = true;
|
|
|
|
}
|