23 lines
365 B
Nix
23 lines
365 B
Nix
{ config, lib, pkgs, inputs, ... }: {
|
|
|
|
imports = [
|
|
./ags
|
|
./hyprland
|
|
./terminal
|
|
./rofi
|
|
./pywal
|
|
./swaylock
|
|
./calcurse
|
|
./firefox
|
|
];
|
|
|
|
config = {
|
|
|
|
home.packages = [
|
|
inputs.nixvim.packages.${pkgs.system}.pywal
|
|
];
|
|
|
|
home.sessionVariables.EDITOR = "nvim";
|
|
};
|
|
}
|