16 lines
242 B
Nix
16 lines
242 B
Nix
{
|
|
programs = {
|
|
alacritty.enable = true;
|
|
};
|
|
|
|
xsession.windowManager.awesome = {
|
|
enable = true;
|
|
noArgb = true;
|
|
};
|
|
|
|
home.file = {
|
|
".config/awesome/rc.lua".source = ./components/awesomerc.lua;
|
|
};
|
|
}
|
|
# vim: ts=2 sw=2 et
|