nixos-cesium/config/configuration.nix
2026-02-05 21:29:11 +01:00

21 lines
451 B
Nix

{ config, pkgs, ... }:
{
imports = [ # Include the results of the hardware scan.
./hardware-configuration.nix
./common.nix
# ./vm.nix
<home-manager/nixos>
];
# Home Manager Konfiguration
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
# Dein(e) Benutzer mit Home Manager
home-manager.users.sebastian = import ./home.nix;
system.stateVersion = "25.11";
nixpkgs.config.allowUnfree = true;
}