Setting up rofi
This commit is contained in:
@@ -1,13 +1,14 @@
|
||||
{ config, pkgs, ... }: let
|
||||
rofiLaunchers = import ../../../pkgs/rofi-launchers/package.nix {};
|
||||
in {
|
||||
imports = [./rofi.nix];
|
||||
|
||||
home.sessionVariables = {
|
||||
HYPRCURSOR_THEME = "Phinger Cursors";
|
||||
HYPRCURSOR_SIZE = 32;
|
||||
ELECTRON_OZONE_PLATFORM_HINT = "auto";
|
||||
XCURSOR_SIZE = 32;
|
||||
};
|
||||
home.packages = with pkgs; [rofi (callPackage ../../../pkgs/rofi-launchers/package.nix {})];
|
||||
|
||||
wayland.windowManager.hyprland = {
|
||||
enable = true;
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
{pkgs,...}:{
|
||||
home.packages = with pkgs; [rofi (callPackage ../../../../../../pkgs/rofi-launchers/package.nix {})];
|
||||
home.packages = with pkgs; [rofi (callPackage ../../../../pkgs/rofi-launchers/package.nix {})];
|
||||
}
|
||||
|
||||
@@ -1,5 +1,16 @@
|
||||
{ inputs, pkgs, ... }: {
|
||||
{ inputs, pkgs, ... }:
|
||||
{
|
||||
imports = [ inputs.nvchad4nix.homeManagerModule ];
|
||||
home.sessionVariables = { EDITOR = "nvim"; };
|
||||
programs.nvchad = { enable = true; };
|
||||
home.sessionVariables = {
|
||||
EDITOR = "nvim";
|
||||
};
|
||||
home.packages = with pkgs; [
|
||||
nixfmt-rfc-style
|
||||
biome
|
||||
stylua
|
||||
];
|
||||
|
||||
programs.nvchad = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user