nixos-configs/hosts/wim/configuration.nix

36 lines
963 B
Nix
Raw Normal View History

{ lib, ... }:
{
2023-09-29 23:46:34 -04:00
imports = [
./hardware-configuration.nix
../../modules/audio.nix
../../modules/kmscon.nix
2023-10-15 17:40:57 -04:00
../../modules/plymouth.nix
../../modules/printer.nix
2023-09-29 23:46:34 -04:00
./cfg/main.nix
./home/main.nix
];
networking = {
useDHCP = lib.mkDefault true;
hostName = "wim";
networkmanager = {
enable = true;
wifi.backend = "wpa_supplicant";
};
};
# Set your time zone.
time.timeZone = "America/Montreal";
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. It's perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "23.05"; # Did you read the comment?
}