nix-config/hosts/floki/default.nix

60 lines
1.2 KiB
Nix
Raw Normal View History

{ pkgs, inputs, ... }: {
imports = [
inputs.hardware.nixosModules.common-cpu-amd
inputs.hardware.nixosModules.common-gpu-amd
inputs.hardware.nixosModules.common-pc-ssd
./hardware-configuration.nix
../common/global
2023-09-19 17:05:08 +00:00
../common/users/gburd
2023-09-19 18:17:19 +00:00
../common/optional/gnome.nix
2023-09-19 17:05:08 +00:00
../common/optional/x11-keymap.nix
2023-09-20 14:02:15 +00:00
# ../common/optional/gamemode.nix
../common/optional/pipewire.nix
../common/optional/quietboot.nix
];
networking = {
2023-09-22 14:10:04 +00:00
hostName = "floki";
};
2023-09-19 17:05:08 +00:00
# Enable networking
2023-09-19 18:24:23 +00:00
networking.networkmanager.enable = true;
2023-09-19 17:05:08 +00:00
boot = {
kernelPackages = pkgs.linuxKernel.packages.linux_zen;
};
powerManagement.powertop.enable = true;
programs = {
light.enable = true;
adb.enable = true;
dconf.enable = true;
kdeconnect.enable = true;
};
# Lid settings
services.logind = {
lidSwitch = "suspend";
lidSwitchExternalPower = "lock";
};
xdg.portal = {
enable = true;
wlr.enable = true;
};
2023-09-20 15:23:23 +00:00
hardware = {
opengl = {
enable = true;
extraPackages = with pkgs; [ amdvlk ];
driSupport = true;
driSupport32Bit = true;
};
};
2023-09-19 17:05:08 +00:00
system.stateVersion = "23.05";
}