wu: resurrect
This commit is contained in:
parent
9779351be9
commit
5d7a3d0ccc
|
@ -23,7 +23,6 @@ with import <stockholm/lib>;
|
||||||
# stockholm
|
# stockholm
|
||||||
gnumake
|
gnumake
|
||||||
hashPassword
|
hashPassword
|
||||||
haskellPackages.lentil
|
|
||||||
parallel
|
parallel
|
||||||
|
|
||||||
# root
|
# root
|
||||||
|
@ -47,7 +46,6 @@ with import <stockholm/lib>;
|
||||||
p7zip
|
p7zip
|
||||||
push
|
push
|
||||||
qrencode
|
qrencode
|
||||||
texLive
|
|
||||||
tmux
|
tmux
|
||||||
|
|
||||||
#ack
|
#ack
|
||||||
|
@ -116,18 +114,23 @@ with import <stockholm/lib>;
|
||||||
boot.initrd.luks = {
|
boot.initrd.luks = {
|
||||||
cryptoModules = [ "aes" "sha512" "xts" ];
|
cryptoModules = [ "aes" "sha512" "xts" ];
|
||||||
devices = [
|
devices = [
|
||||||
{ name = "home"; device = "/dev/vg840/enchome"; preLVM = false; }
|
{ name = "wuca"; device = "/dev/sda2"; }
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems = {
|
fileSystems = {
|
||||||
"/" = {
|
"/" = {
|
||||||
device = "/dev/mapper/vg840-wuroot";
|
device = "/dev/mapper/wuvga-root";
|
||||||
|
fsType = "btrfs";
|
||||||
|
options = ["defaults" "noatime" "ssd" "compress=lzo"];
|
||||||
|
};
|
||||||
|
"/bku" = {
|
||||||
|
device = "/dev/mapper/wuvga-bku";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = ["defaults" "noatime" "ssd" "compress=lzo"];
|
options = ["defaults" "noatime" "ssd" "compress=lzo"];
|
||||||
};
|
};
|
||||||
"/home" = {
|
"/home" = {
|
||||||
device = "/dev/mapper/home";
|
device = "/dev/mapper/wuvga-home";
|
||||||
fsType = "btrfs";
|
fsType = "btrfs";
|
||||||
options = ["defaults" "noatime" "ssd" "compress=lzo"];
|
options = ["defaults" "noatime" "ssd" "compress=lzo"];
|
||||||
};
|
};
|
||||||
|
@ -174,5 +177,5 @@ with import <stockholm/lib>;
|
||||||
KERNEL=="hpet", GROUP="audio"
|
KERNEL=="hpet", GROUP="audio"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
services.virtualboxHost.enable = true;
|
virtualisation.virtualbox.host.enable = true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,9 +12,11 @@
|
||||||
boot.initrd.availableKernelModules = [ "ahci" ];
|
boot.initrd.availableKernelModules = [ "ahci" ];
|
||||||
boot.kernelModules = [ "kvm-intel" ];
|
boot.kernelModules = [ "kvm-intel" ];
|
||||||
|
|
||||||
boot.loader.gummiboot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
boot.loader.efi.canTouchEfiVariables = true;
|
boot.loader.efi.canTouchEfiVariables = true;
|
||||||
|
|
||||||
|
hardware.opengl.extraPackages = [ pkgs.vaapiIntel ];
|
||||||
|
|
||||||
networking.wireless.enable = true;
|
networking.wireless.enable = true;
|
||||||
|
|
||||||
nix = {
|
nix = {
|
||||||
|
@ -31,10 +33,6 @@
|
||||||
HandleSuspendKey=ignore
|
HandleSuspendKey=ignore
|
||||||
'';
|
'';
|
||||||
|
|
||||||
services.xserver = {
|
|
||||||
vaapiDrivers = [ pkgs.vaapiIntel ];
|
|
||||||
};
|
|
||||||
|
|
||||||
system.activationScripts.powertopTunables = ''
|
system.activationScripts.powertopTunables = ''
|
||||||
echo 1 > /sys/module/snd_hda_intel/parameters/power_save
|
echo 1 > /sys/module/snd_hda_intel/parameters/power_save
|
||||||
echo 1500 > /proc/sys/vm/dirty_writeback_centisecs
|
echo 1500 > /proc/sys/vm/dirty_writeback_centisecs
|
||||||
|
|
Loading…
Reference in a new issue