Files
flake/modules/nixos/default.nix
2023-03-06 23:51:19 +09:00

30 lines
612 B
Nix

{pkgs, ...}: {
imports = [
./fonts
./nix
./wayland
./games
];
boot.loader = {
systemd-boot = {
enable = true;
# configurationLimit = 4;
};
efi.canTouchEfiVariables = true;
};
networking.networkmanager.enable = true;
time.timeZone = "Asia/Tokyo";
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
boot.kernelPackages = pkgs.linuxPackages_latest;
# This was needed on older versions of the kernel.
#boot.kernelParams = ["i915.force_probe=46a6" "i915.enable_psr=0"];
# Never change this.
system.stateVersion = "22.11";
}