30 lines
587 B
Nix
30 lines
587 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
# Include the results of the hardware scan.
|
|
./hardware-configuration.nix
|
|
../../modules/options.nix
|
|
../../modules/nixos/common.nix
|
|
];
|
|
|
|
# Bootloader.
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
networking.hostName = "framework"; # Define your hostname.
|
|
|
|
home-manager = {
|
|
extraSpecialArgs = {
|
|
inherit inputs pkgs;
|
|
myOptions = config.myOptions;
|
|
};
|
|
users."bruhng" = import ./home.nix;
|
|
};
|
|
|
|
system.stateVersion = "25.05"; # Do not channge
|
|
}
|