Migrate to AwesomeWM + refactor

This commit is contained in:
♥ Minnie ♥ 2024-07-27 08:25:17 +08:00
parent fbf69b086a
commit bb8ffbc999
Signed by: jasmine
GPG key ID: 8563E358D4E8040E
20 changed files with 613 additions and 31 deletions

View file

@ -0,0 +1,27 @@
{ inputs, pkgs, ... }:
{
imports = [
./awesome
./discord
./rofi
./wezterm
./email.nix
./irc.nix
./mpd.nix
./picom.nix
];
home.packages = with pkgs; [
feh
];
home.file = {
".local/share/fonts" = {
recursive = true;
source = "${inputs.self}/pkgs/patched-fonts";
};
".xinitrc".source = ./xinitrc;
};
}