nixos-config/hosts/mashu.nix

53 lines
1.3 KiB
Nix
Raw Normal View History

2021-09-04 11:49:33 +00:00
{ config, lib, pkgs, ... }:
let
mkHost = (import ../modules { lib = lib; pkgs = pkgs; }).mkHost;
in mkHost config {
userName = "alexander";
hostName = "mashu";
overlays = [ "nur" "unstable" "simple" "custom" "surface" ];
2021-09-04 11:49:33 +00:00
hardwareImports = [
"intel"
2021-09-04 18:16:58 +00:00
"wifi"
"mobile"
"surface-pro6"
2021-09-04 11:49:33 +00:00
];
2021-09-04 18:41:43 +00:00
wireless = true;
wifiInterface = "wlp1s0";
2021-09-04 11:49:33 +00:00
programImports = [
2021-10-18 20:54:53 +00:00
"zsh" "git" "mpv" "tmux" "firefox" "gnome-terminal" "gnome" "i18n" "xournalpp" "nextcloud"
2021-09-04 18:16:58 +00:00
"distributed-build/offload.nix"
2021-09-04 11:49:33 +00:00
];
fileSystems = {
"/" = {
2021-09-04 18:16:58 +00:00
device = "/dev/disk/by-label/root";
2021-09-04 11:49:33 +00:00
fsType = "btrfs";
};
"/boot" = {
2021-09-04 18:16:58 +00:00
device = "/dev/disk/by-label/boot";
2021-09-04 11:49:33 +00:00
fsType = "vfat";
2021-09-04 18:16:58 +00:00
};
2021-09-04 11:49:33 +00:00
};
swapDevices = [
2021-09-04 18:16:58 +00:00
{
device = "/dev/disk/by-label/swap";
}
2021-09-04 11:49:33 +00:00
];
extraOptions = old: {
boot = {
kernelParams = [ "mem_sleep_default=deep" "kernel.nmi_watchdog=0" "vm.dirty_writeback_centisecs=1500" ];
2021-09-04 11:49:33 +00:00
extraModprobeConfig = ''
2021-09-06 20:51:29 +00:00
options i915 enable_fbc=1 enable_rc6=1 modeset=1
options snd_hda_intel power_save=1
options snd_ac97_codec power_save=1
options iwlwifi power_save=Y
options iwldvm force_cam=N
2021-09-04 11:49:33 +00:00
'';
initrd = {
availableKernelModules = [ "xhci_pci" "nvme" "usbhid" ];
kernelModules = [ "kvm-intel" ];
};
};
};
}