nixos-config/archachatina.nix

46 lines
860 B
Nix
Raw Normal View History

2015-05-21 15:27:06 +02:00
{ config, pkgs, ... }:
{
imports =
2015-05-21 16:13:47 +02:00
[
./common.nix
./uefi.nix
2015-05-21 15:27:06 +02:00
];
2015-09-03 10:41:18 +02: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 15:27:06 +02:00
networking.hostName = "archachatina"; # Define your hostname.
networking.hostId = "cc7ea3ba";
2015-06-09 17:40:27 +02:00
environment.systemPackages = with pkgs; [
beets
mediainfo
flac
2015-08-19 17:45:00 +02:00
recoll
uvccapture
2015-06-09 17:40:27 +02:00
];
2015-11-22 12:10:31 +01:00
virtualisation.docker.enable = true;
users.extraUsers.gebner.extraGroups = [ "docker" ];
services.nix-serve = {
enable = true;
secretKeyFile = "/etc/nix-serve/secret.key";
};
2015-11-22 14:04:31 +01:00
networking.firewall.allowedTCPPorts = [ config.services.nix-serve.port ];
2015-11-22 12:10:31 +01:00
2015-05-21 15:27:06 +02:00
}