14 lines
186 B
Nix
14 lines
186 B
Nix
{pkgs,...}:
|
|
{
|
|
imports = [
|
|
./desktop/hyprland.nix
|
|
];
|
|
home.packages = with pkgs; [
|
|
kitty
|
|
];
|
|
home.sessionVariables = {
|
|
TERMINAL = "kitty";
|
|
BROWSER = "firefox";
|
|
};
|
|
|
|
}
|