mirror of
https://github.com/zoriya/flake.git
synced 2025-12-05 22:26:21 +00:00
30 lines
612 B
Nix
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";
|
|
}
|