23 lines
443 B
Nix
23 lines
443 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./boot-config.nix
|
|
./hardware-configuration.nix
|
|
../../externals/wip-pinebook-pro/pinebook_pro.nix
|
|
../../sets/wifi.nix
|
|
../../sets/workstation.nix
|
|
];
|
|
|
|
networking.hostName = "mistmane";
|
|
programs.light.enable = true;
|
|
system.stateVersion = "20.09";
|
|
|
|
security.pam.enableEcryptfs = true;
|
|
environment.systemPackages = with pkgs; [
|
|
ecryptfs
|
|
ecryptfs-helper
|
|
foot
|
|
];
|
|
}
|