nixos-config/home/i3/default.nix
2024-11-14 18:04:57 +04:00

14 lines
172 B
Nix

{ pkgs, config, ... }:
{
imports = [
../polybar
../picom
];
home.file.".config/i3/config".source = ./config;
services.picom = {
enable = true;
};
}