mirror of
https://github.com/Ascyii/nixos.git
synced 2026-01-01 06:44:26 -05:00
38 lines
791 B
Nix
38 lines
791 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
|
|
./../../user/users.nix
|
|
|
|
./../../modules/essential.nix
|
|
./../../modules/common/sops.nix
|
|
|
|
./../../modules/hardware/boot.nix
|
|
|
|
./../../modules/graphics/workstation.nix
|
|
./../../modules/graphics/grayscale.nix
|
|
|
|
./../../modules/laptop/powersave.nix
|
|
./../../modules/laptop/battery.nix
|
|
./../../modules/services/printer.nix
|
|
];
|
|
|
|
networking.hostName = "thinix";
|
|
batMode = "double";
|
|
|
|
swapDevices = [{
|
|
device = "/swapfile";
|
|
size = 4096;
|
|
}];
|
|
|
|
services.xserver.xkb = {
|
|
layout = "us"; # or "us" or whatever base
|
|
variant = "neo"; # for Neo2
|
|
};
|
|
console.useXkbConfig = true; # to make it apply on TTY too
|
|
|
|
system.stateVersion = "24.11"; # Dont change this
|
|
}
|