mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
13 lines
176 B
Nix
13 lines
176 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
home.file = {
|
|
".xinitrc" = {
|
|
executable = true;
|
|
text = ''
|
|
#!${pkgs.bash}/bin/bash
|
|
exec fvwm
|
|
'';
|
|
};
|
|
};
|
|
}
|