readme: update
This commit is contained in:
parent
b91af8f6f7
commit
f1b62174ef
1 changed files with 5 additions and 13 deletions
18
README.md
18
README.md
|
|
@ -20,27 +20,19 @@ Or, add it as a flake input.
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
outputs =
|
outputs =
|
||||||
{ nixpkgs, nixowos, ... }:
|
inputs:
|
||||||
{
|
{
|
||||||
# NOTE: 'nixos' is the default hostname
|
# NOTE: 'nixos' is the default hostname
|
||||||
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
|
nixosConfigurations.nixos = inputs.nixpkgs.lib.nixosSystem {
|
||||||
modules = [
|
modules = [
|
||||||
./configuration.nix
|
./configuration.nix
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
|
|
||||||
"${nixowos}/default.nix"
|
"${inputs.nixowos}/default.nix"
|
||||||
{
|
{
|
||||||
nixowos = {
|
nixowos = {
|
||||||
enable = true;
|
defaults.enable = true;
|
||||||
|
allowAddingPackages = true;
|
||||||
graphical = {
|
|
||||||
enable = true;
|
|
||||||
games.enable = true;
|
|
||||||
# nvidia.enable = true;
|
|
||||||
plasma.startOnFirstTTY = true;
|
|
||||||
jp.enable = true;
|
|
||||||
mpv.useFullFFmpeg = true;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue