14 lines
230 B
Nix
14 lines
230 B
Nix
{ config, pkgs, ... }:
|
|
let
|
|
tuxedo = import (builtins.fetchTarball "https://github.com/blitz/tuxedo-nixos/archive/master.tar.gz");
|
|
in {
|
|
|
|
# ...
|
|
|
|
imports = [
|
|
tuxedo.module
|
|
];
|
|
|
|
hardware.tuxedo-control-center.enable = true;
|
|
}
|