nixos-config/system/mistmane/default.nix

22 lines
441 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
imports = [
./boot-config.nix
./hardware-configuration.nix
../../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
];
networking.hostName = "mistmane";
programs.light.enable = true;
system.stateVersion = "20.09";
2021-08-25 05:03:03 +00:00
security.pam.enableEcryptfs = true;
environment.systemPackages = with pkgs; [
2021-08-25 05:03:03 +00:00
ecryptfs ecryptfs-helper
foot
];
}