did a lot of things with hyprland and neovim

This commit is contained in:
Tomas Rivera
2026-03-01 16:34:17 +01:00
parent 035ecbce39
commit af6a0c3e10
7 changed files with 1258 additions and 9 deletions
+9 -6
View File
@@ -11,14 +11,16 @@
../../modules/nixos/battery.nix
];
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users = {
tomasr = ./home.nix;
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
users = {
tomasr = ./home.nix;
};
#extraSpecialArgs = { inherit inputs; };
};
environment.pathsToLink = [
"/share/applications"
"/share/xdg-desktop-portal"
@@ -175,6 +177,7 @@ cmatrix
tomato-c # pomodoro timer
pavucontrol # PulseAudio Volume Control
hyprshot
hyprcursor
];
# fonts
+3 -1
View File
@@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ config, pkgs, inputs, ... }:
{
# every import imports a specific module for an app. This module contains the enabling of this app and its settings.
@@ -16,6 +16,7 @@ imports = [
../../modules/home-manager/rofi.nix # launcher and keybindings helper
../../modules/home-manager/swaync.nix # notification daemon
../../modules/home-manager/neovim.nix # dont use nixvim. broken
#../../modules/home-manager/neovim2.nix # ./neovim2.nix uses vim plug instead of the nix repository as with ./neovim.nix see the begining of neovim2 for an explanation
../../modules/home-manager/rclone.nix
../../modules/home-manager/waybar.nix
#../../modules/home-manager/oh-my-posh.nix # zsh customizer
@@ -26,6 +27,7 @@ imports = [
#programs.nixvim = {
# enable = true;
# imports = [ ../../modules/nixvim/neovim.nix ];