mirror of
https://github.com/Ascyii/nixos.git
synced 2025-12-31 22:44:23 -05:00
21 lines
335 B
Nix
21 lines
335 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
|
|
../../user/users.nix
|
|
../../modules/common.nix
|
|
|
|
../../modules/hardware/battery.nix
|
|
../../modules/hardware/xremap.nix
|
|
];
|
|
|
|
networking.hostName = "nixyos";
|
|
|
|
networking.networkmanager.wifi.powersave = true;
|
|
|
|
system.stateVersion = "24.11"; # Did you read the comment?
|
|
}
|
|
|