2015-05-21 13:27:06 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports =
|
2015-05-21 14:13:47 +00:00
|
|
|
[
|
|
|
|
./common.nix
|
|
|
|
./uefi.nix
|
2015-05-21 13:27:06 +00:00
|
|
|
];
|
|
|
|
|
2015-09-03 08:41:18 +00:00
|
|
|
environment.etc."lvm/lvm.conf".text = ''
|
|
|
|
devices {
|
|
|
|
issue_discards = 1
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
boot.initrd.luks.devices = [
|
|
|
|
{
|
|
|
|
name = "sda2_crypt";
|
|
|
|
device = "/dev/disk/by-uuid/663dcfda-081e-40d5-9ba4-62ad73dc5098";
|
|
|
|
preLVM = true;
|
|
|
|
allowDiscards = true;
|
|
|
|
}
|
|
|
|
];
|
2015-05-21 13:27:06 +00:00
|
|
|
|
|
|
|
networking.hostName = "archachatina"; # Define your hostname.
|
|
|
|
networking.hostId = "cc7ea3ba";
|
|
|
|
|
2015-06-09 15:40:27 +00:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
beets
|
|
|
|
mediainfo
|
|
|
|
flac
|
2015-08-19 15:45:00 +00:00
|
|
|
|
|
|
|
recoll
|
|
|
|
uvccapture
|
2015-06-09 15:40:27 +00:00
|
|
|
];
|
|
|
|
|
2015-05-21 13:27:06 +00:00
|
|
|
}
|