mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 01:53:15 -06:00
19 lines
345 B
Nix
19 lines
345 B
Nix
{
|
|
inputs,
|
|
...
|
|
}: {
|
|
imports = with inputs.self.nixosModules; [
|
|
nix-ld
|
|
];
|
|
|
|
desktop.enable = true;
|
|
cli.enable = true;
|
|
# Enable the X11 windowing system.
|
|
services.xserver = {
|
|
enable = true;
|
|
displayManager.startx.enable = true;
|
|
windowManager.qtile.enable = true;
|
|
};
|
|
|
|
users.users.daylin.extraGroups = ["docker"];
|
|
}
|