An open API service indexing awesome lists of open source software.

https://github.com/andreoss/nodm-nixos-module

startx as a systemd service. No DM required.
https://github.com/andreoss/nodm-nixos-module

Last synced: 12 months ago
JSON representation

startx as a systemd service. No DM required.

Awesome Lists containing this project

README

          

# nodm-nixos-module
Run startx as a systemd service. No DM required.

## Usage

Add it as a module to your `flake.nix`:

```
inputs = {
nodm-module.url = "github:andreoss/nodm-nixos-module";
...
};
...
modules = [
inputs.nodm-module.nixosModules.default
...
];
```

In `configuration.nix`
```
services.startx = {
enable = true;
user = "me";
};

```