nixos-cesium/nixos/configuration.nix
2026-03-07 09:19:25 +01:00

26 lines
601 B
Nix

{ config, pkgs, ... }:
{
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
./cesium.nix
./common.nix
./mounts.nix
./services.nix
./users/sebastian.nix
<home-manager/nixos>
];
# Home Manager configuration
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.backupFileExtension = "backup";
# NixOS Version (don't change after first installation)
system.stateVersion = "25.11";
nixpkgs.config.allowUnfree = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
}