mirror of
https://github.com/Ascyii/nixos.git
synced 2025-12-31 22:44:23 -05:00
29 lines
515 B
Nix
29 lines
515 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
|
|
./../../user/users.nix
|
|
|
|
./../../modules/essential.nix
|
|
./../../modules/common/sops.nix
|
|
|
|
./../../modules/hardware/xremap.nix
|
|
./../../modules/hardware/boot.nix
|
|
|
|
./../../modules/laptop/powersave.nix
|
|
./../../modules/laptop/battery.nix
|
|
|
|
./../../modules/graphics/workstation.nix
|
|
|
|
./../../modules/services/webdav.nix
|
|
./../../modules/services/scanning.nix
|
|
];
|
|
|
|
networking.hostName = "nixyos";
|
|
|
|
# Older machine
|
|
system.stateVersion = "24.11";
|
|
}
|