Move hyprlock out of the home configuration.

This commit is contained in:
jay
2025-07-02 06:00:23 -04:00
parent 840446aabc
commit 6759645429
2 changed files with 4 additions and 4 deletions

View File

@@ -10,6 +10,7 @@
inputs.hyprpanel.homeManagerModules.hyprpanel inputs.hyprpanel.homeManagerModules.hyprpanel
./programs/bash.nix ./programs/bash.nix
./programs/git.nix ./programs/git.nix
./programs/hyprlock.nix
./programs/lazygit.nix ./programs/lazygit.nix
./programs/oh-my-posh.nix ./programs/oh-my-posh.nix
./programs/rofi.nix ./programs/rofi.nix
@@ -90,10 +91,6 @@
# Let Home Manager install and manage itself. # Let Home Manager install and manage itself.
programs.home-manager.enable = true; programs.home-manager.enable = true;
programs.hyprlock = {
enable = true;
};
# programs.starship.presets = [ "nerd-font-symbols" ]; # programs.starship.presets = [ "nerd-font-symbols" ];
programs.hyprpanel = { programs.hyprpanel = {

View File

@@ -0,0 +1,3 @@
{ pkgs, ...}: {
programs.hyprlock.enable = true;
}