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.
- Host: GitHub
- URL: https://github.com/andreoss/nodm-nixos-module
- Owner: andreoss
- Created: 2023-03-16T01:47:18.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-09-08T02:35:04.000Z (over 1 year ago)
- Last Synced: 2025-02-10T04:41:46.631Z (about 1 year ago)
- Language: Nix
- Size: 4.88 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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";
};
```