mirror of
https://github.com/hyprwm/hyprland-wiki.git
synced 2024-12-22 17:49:48 +01:00
Nix: fix syntax
This commit is contained in:
parent
2dbf6731c9
commit
8e96c3f320
3 changed files with 4 additions and 2 deletions
|
@ -30,6 +30,7 @@ For a list of available options, check the
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
Don't forget to replace `user@hostname` with your username and hostname!
|
Don't forget to replace `user@hostname` with your username and hostname!
|
||||||
|
@ -38,7 +39,7 @@ Don't forget to replace `user@hostname` with your username and hostname!
|
||||||
|
|
||||||
```nix
|
```nix
|
||||||
# home config
|
# home config
|
||||||
{config, pkgs, inputs, ...}: let
|
{config, pkgs, ...}: let
|
||||||
flake-compat = builtins.fetchTarball "https://github.com/edolstra/flake-compat/archive/master.tar.gz";
|
flake-compat = builtins.fetchTarball "https://github.com/edolstra/flake-compat/archive/master.tar.gz";
|
||||||
|
|
||||||
hyprland = (import flake-compat {
|
hyprland = (import flake-compat {
|
||||||
|
|
|
@ -30,6 +30,7 @@ As such, installation using the Flake is recommended.
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
Don't forget to replace `HOSTNAME` with your hostname!
|
Don't forget to replace `HOSTNAME` with your hostname!
|
||||||
|
|
|
@ -26,7 +26,7 @@ programs.hyprland = { # or wayland.windowManager.hyprland
|
||||||
hidpi = true;
|
hidpi = true;
|
||||||
};
|
};
|
||||||
nvidiaPatches = false;
|
nvidiaPatches = false;
|
||||||
}
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
## Options descriptions
|
## Options descriptions
|
||||||
|
|
Loading…
Reference in a new issue