2020-11-26 04:17:41 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
2020-12-04 23:35:51 +00:00
|
|
|
./boot-config.nix
|
|
|
|
./hardware-configuration.nix
|
2020-11-26 04:17:41 +00:00
|
|
|
../../externals/wip-pinebook-pro/pinebook_pro.nix
|
2020-12-16 21:43:48 +00:00
|
|
|
../../sets/wifi.nix
|
2021-01-10 06:27:22 +00:00
|
|
|
../../sets/workstation.nix
|
2020-12-04 23:35:51 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
networking.hostName = "mistmane";
|
|
|
|
programs.light.enable = true;
|
|
|
|
system.stateVersion = "20.09";
|
2021-08-26 18:06:46 +00:00
|
|
|
|
2021-08-25 05:03:03 +00:00
|
|
|
security.pam.enableEcryptfs = true;
|
2020-12-04 23:35:51 +00:00
|
|
|
environment.systemPackages = with pkgs; [
|
2021-08-26 18:06:46 +00:00
|
|
|
ecryptfs
|
|
|
|
ecryptfs-helper
|
2020-12-04 23:35:51 +00:00
|
|
|
foot
|
2020-11-26 04:17:41 +00:00
|
|
|
];
|
|
|
|
}
|