31 lines
520 B
Nix
31 lines
520 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
allowUnfree,
|
|
...
|
|
}: {
|
|
imports = [
|
|
# Include the results of the hardware scan.
|
|
./hardware-configuration.nix
|
|
../../modules/system.nix
|
|
../../modules/display-manager.nix
|
|
# ../../modules/app.nix
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
vim
|
|
wget
|
|
];
|
|
|
|
nixpkgs.config.allowUnfree = allowUnfree;
|
|
|
|
nix.settings = {
|
|
trusted-users = [
|
|
"lsoriano"
|
|
];
|
|
experimental-features = ["nix-command" "flakes"];
|
|
};
|
|
system.stateVersion = "25.05";
|
|
}
|