mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 18:41:34 +01:00
Rename the hosts
This commit is contained in:
parent
7481d44f0a
commit
a101b7ab25
11 changed files with 14 additions and 14 deletions
27
users/seb/@north.nix
Normal file
27
users/seb/@north.nix
Normal 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 "";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue