Removes lock on vega. Fixes some aliases

This commit is contained in:
2025-05-28 11:31:46 -07:00
parent b56d904c4e
commit 384d6939f8
2 changed files with 15 additions and 8 deletions

View File

@@ -50,16 +50,16 @@
]; ];
home.shellAliases = { home.shellAliases = {
"p?" = "ps ax | grep"; "p?" = "ps ax | rg";
# Dysk is basically just better. # Dysk is basically just better.
"df" = "echo 'Don't you want `dysk`?'"; "df" = "echo 'Do you mean: dysk?'";
"grep" = "echo 'Don't you want `rg`?'"; "grep" = "echo 'Do you mean: rg?'";
"find" = "echo 'Don't you want `fd`?'"; "find" = "echo 'Do you mean: fd'";
"cat" = "bat"; "cat" = "bat";
"ls" = "eza"; "ls" = "eza";
"http" = "echo 'Don't you want `xh`?'"; "http" = "echo 'Do you mean: xh'";
"du" = "echo 'Don't you want `dust` or `dua`?'"; "du" = "echo 'Do you mean: dust or dua?'";
"ranger" = "echo 'Don't you want `yazi`?'"; "ranger" = "echo 'Do you mean: yazi'";
}; };
programs.zsh = { programs.zsh = {

View File

@@ -1,4 +1,4 @@
{ pkgs, ... }: { pkgs, lib, ... }:
{ {
imports = imports =
map (x: ../../../home-manager + x) [ map (x: ../../../home-manager + x) [
@@ -32,6 +32,13 @@
userEmail = "periodic@blazestar.net"; userEmail = "periodic@blazestar.net";
}; };
# TODO: Hyprlock is not working correctly on this system and is showing the
# desktop but the screen is still locked. Disabling it for now.
services.hypridle.settings.general = {
lock_cmd = lib.mkForce "";
before_sleep_cmd = lib.mkForce "";
};
wayland.windowManager.hyprland.settings = { wayland.windowManager.hyprland.settings = {
# Set up eww here because it's based on the monitor configuration # Set up eww here because it's based on the monitor configuration
# Eww is idempotent, so it's fine to just run it on every reload to make sure things are open # Eww is idempotent, so it's fine to just run it on every reload to make sure things are open