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 =
|
||||
{ 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;
|
||||
};
|
||||
}
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue