nixos/nixos/configuration.nix
2025-04-17 13:35:52 -04:00

25 lines
940 B
Nix

{ config, lib, pkgs, self, ... }:
{
imports =
[ # Include the results of the hardware scan.
./hardware/hardware.nix
./environments/plasma-wayland.nix
./users/luxzi.nix
./services/services.nix
./programs/programs.nix
./misc/misc.nix
];
# Copy the NixOS configuration file and link it from the resulting system
# (/run/current-system/configuration.nix). This is useful in case you
# accidentally delete configuration.nix.
# system.copySystemConfiguration = true;
# This value does NOT affect the Nixpkgs version your packages and OS are pulled from,
# so changing it will NOT upgrade your system - see https://nixos.org/manual/nixos/stable/#sec-upgrading for how
# to actually do that.
# For more information, see `man configuration.nix` or https://nixos.org/manual/nixos/stable/options#opt-system.stateVersion .
system.stateVersion = "24.05"; # Did you read the comment?
}