decoysnail
This commit is contained in:
parent
2fbe00610a
commit
651d7cb9e8
40
decoysnail.nix
Normal file
40
decoysnail.nix
Normal file
@ -0,0 +1,40 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports =
|
||||
[
|
||||
./common.nix
|
||||
./large-sw.nix
|
||||
./uefi.nix
|
||||
];
|
||||
|
||||
boot.initrd.luks.devices = [
|
||||
{
|
||||
name = "sda2_crypt";
|
||||
device = "/dev/disk/by-uuid/6c687d35-1b43-4799-b71c-a5b5c21b3e2a";
|
||||
preLVM = true;
|
||||
}
|
||||
];
|
||||
|
||||
networking = {
|
||||
hostName = "decoysnail";
|
||||
hostId = "cf04f682";
|
||||
};
|
||||
|
||||
services.openssh.enable = true;
|
||||
|
||||
hardware.cpu.intel.updateMicrocode = true;
|
||||
|
||||
services.thermald.enable = true;
|
||||
|
||||
virtualisation.docker = {
|
||||
enable = true;
|
||||
storageDriver = "overlay2";
|
||||
};
|
||||
users.extraUsers.gebner.extraGroups = [ "docker" ];
|
||||
|
||||
hardware.opengl.driSupport32Bit = true;
|
||||
|
||||
services.avahi.nssmdns = true;
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user