Files
nixos/nixos/desktop/configuration.nix
T
biscuit 363d470386 upd
2025-06-05 16:35:01 -05:00

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";
}