readme: update

This commit is contained in:
Elec3137 2026-03-23 21:20:33 -07:00
commit f1b62174ef

View file

@ -20,27 +20,19 @@ Or, add it as a flake input.
};
};
outputs =
{ nixpkgs, nixowos, ... }:
inputs:
{
# NOTE: 'nixos' is the default hostname
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
nixosConfigurations.nixos = inputs.nixpkgs.lib.nixosSystem {
modules = [
./configuration.nix
./hardware-configuration.nix
"${nixowos}/default.nix"
"${inputs.nixowos}/default.nix"
{
nixowos = {
enable = true;
graphical = {
enable = true;
games.enable = true;
# nvidia.enable = true;
plasma.startOnFirstTTY = true;
jp.enable = true;
mpv.useFullFFmpeg = true;
};
defaults.enable = true;
allowAddingPackages = true;
};
}
];