19 lines
256 B
Nix
19 lines
256 B
Nix
{ pkgs, ... }:
|
|
|
|
let
|
|
script = pkgs.substitute {
|
|
src = ./config.rb;
|
|
substitutions = [
|
|
"--replace-fail"
|
|
"@src@"
|
|
"${./scripts}"
|
|
];
|
|
};
|
|
in
|
|
{
|
|
xsession = {
|
|
enable = true;
|
|
windowManager.command = "kutu ${script}";
|
|
};
|
|
}
|