26 lines
455 B
Nix
26 lines
455 B
Nix
{ config, lib, pkgs, inputs, ... }: {
|
|
|
|
imports = [
|
|
./ags
|
|
./git
|
|
./nh
|
|
./hyprland
|
|
./hyprpanel
|
|
./terminal
|
|
./rofi
|
|
./pywal
|
|
./swaylock
|
|
./calcurse
|
|
./firefox
|
|
];
|
|
|
|
config = {
|
|
|
|
home.packages = lib.mkIf (!config.homeconfig.wal.enable) [
|
|
inputs.nixvim.packages.${pkgs.system}.default
|
|
];
|
|
|
|
home.sessionVariables.EDITOR = "nvim";
|
|
};
|
|
}
|