Rename the hosts

This commit is contained in:
SebastianStork 2024-04-21 21:23:44 +02:00
parent 7481d44f0a
commit a101b7ab25
11 changed files with 14 additions and 14 deletions

27
users/seb/@north.nix Normal file
View file

@ -0,0 +1,27 @@
{
inputs,
pkgs,
lib,
...
}: {
imports = [./default.nix];
home-manager.users.seb = {
home.packages = [
pkgs.obs-studio
pkgs.libsForQt5.kdenlive
pkgs.gimp
];
wayland.windowManager.hyprland.settings.monitor = "DP-2,2560x1440@144,0x0,1";
programs.hyprlock.package = inputs.hyprlock.packages.${pkgs.system}.default.overrideAttrs {
postPatch = ''
substituteInPlace src/core/hyprlock.cpp \
--replace "5000" "16"
'';
};
services.hypridle.beforeSleepCmd = lib.mkForce "";
};
}