world: init
This commit is contained in:
parent
184253c3fe
commit
9fbc6e83ba
9 changed files with 192 additions and 2 deletions
51
hosts/world/configuration.nix
Normal file
51
hosts/world/configuration.nix
Normal file
|
@ -0,0 +1,51 @@
|
|||
{
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
# Time Zone
|
||||
time.timeZone = "Europe/Zurich";
|
||||
# Select internationalisation properties.
|
||||
i18n.defaultLocale = "en_US.UTF-8";
|
||||
console.keyMap = "uk";
|
||||
security.polkit.enable = true;
|
||||
programs.nix-ld.enable = false;
|
||||
boot.kernelPackages = pkgs.linuxPackages_xanmod_latest;
|
||||
services = {
|
||||
fstrim.enable = lib.mkDefault true;
|
||||
thermald.enable = true;
|
||||
};
|
||||
|
||||
modules = {
|
||||
desktops.hyprland.enable = true;
|
||||
|
||||
system = {
|
||||
boot.systemd-boot.enable = true;
|
||||
impermanence.enable = false;
|
||||
hardware = {
|
||||
intel.enable = true;
|
||||
};
|
||||
programs = {
|
||||
editors = {
|
||||
helix.enable = true;
|
||||
};
|
||||
terminals = {
|
||||
foot.enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
services = {
|
||||
kanata.enable = true;
|
||||
};
|
||||
other = {
|
||||
system.username = "cr";
|
||||
};
|
||||
programs = {
|
||||
ssh.enable = true;
|
||||
btop.enable = true;
|
||||
nh.enable = true;
|
||||
thunar.enable = true;
|
||||
};
|
||||
};
|
||||
system.stateVersion = "23.11";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue