Added scripts to collect/deploy configs. Updated i3 and nixos configs.

This commit is contained in:
Pavel Kachalouski
2019-04-21 10:26:05 +02:00
parent 5f1c5903c3
commit d6f93257b7
10 changed files with 345 additions and 10 deletions

View File

@@ -0,0 +1,37 @@
# Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, ... }:
{
imports =
[ <nixpkgs/nixos/modules/installer/scan/not-detected.nix>
];
boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
boot.cleanTmpDir = true;
fileSystems."/" =
{ device = "/dev/disk/by-uuid/a29debeb-54c8-44b8-ae1d-19de8032ee60";
fsType = "ext4";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/ADDE-D2C3";
fsType = "vfat";
};
fileSystems."/home" =
{ device = "/dev/disk/by-uuid/88e4b0fa-ec8e-4235-88b1-9ad7721938be";
fsType = "ext4";
};
swapDevices = [ ];
nix.maxJobs = lib.mkDefault 4;
powerManagement.cpuFreqGovernor = "powersave";
hardware.bluetooth.enable = true;
hardware.opengl.enable = true;
}