infrastructure/depot/users/kairi/fvwm/default.nix
2021-08-09 02:41:43 +01:00

13 lines
176 B
Nix

{ config, pkgs, ... }:
{
home.file = {
".xinitrc" = {
executable = true;
text = ''
#!${pkgs.bash}/bin/bash
exec fvwm
'';
};
};
}