host-specific hyprlock
This commit is contained in:
@ -6,7 +6,10 @@
|
|||||||
../../modules/programs.nix
|
../../modules/programs.nix
|
||||||
];
|
];
|
||||||
# Extend home-manager configuration with host-specific monitor settings
|
# Extend home-manager configuration with host-specific monitor settings
|
||||||
home-manager.users.schulze.imports = [./hyprland-monitors.nix];
|
home-manager.users.schulze.imports = [
|
||||||
|
./hyprland-monitors.nix
|
||||||
|
./hyprlock.nix
|
||||||
|
];
|
||||||
|
|
||||||
networking.hostName = "hurricane";
|
networking.hostName = "hurricane";
|
||||||
|
|
||||||
|
3
hosts/hurricane/hyprlock.nix
Normal file
3
hosts/hurricane/hyprlock.nix
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
programs.hyprlock.settings.background.path = "$HOME/git/nixos/modules/home/images/control-panel.png";
|
||||||
|
}
|
@ -6,7 +6,10 @@
|
|||||||
../../modules/programs.nix
|
../../modules/programs.nix
|
||||||
];
|
];
|
||||||
# Extend home-manager configuration with host-specific monitor settings
|
# Extend home-manager configuration with host-specific monitor settings
|
||||||
home-manager.users.schulze.imports = [./hyprland-monitors.nix];
|
home-manager.users.schulze.imports = [
|
||||||
|
./hyprland-monitors.nix
|
||||||
|
./hyprlock.nix
|
||||||
|
];
|
||||||
|
|
||||||
# Encrypted drive
|
# Encrypted drive
|
||||||
boot.initrd.luks.devices."luks-1728f038-43a6-4e0d-b7dd-19a4c1083605".device = "/dev/disk/by-uuid/1728f038-43a6-4e0d-b7dd-19a4c1083605";
|
boot.initrd.luks.devices."luks-1728f038-43a6-4e0d-b7dd-19a4c1083605".device = "/dev/disk/by-uuid/1728f038-43a6-4e0d-b7dd-19a4c1083605";
|
||||||
|
3
hosts/wildfire/hyprlock.nix
Normal file
3
hosts/wildfire/hyprlock.nix
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
programs.hyprlock.settings.background.path = "$HOME/git/nixos/modules/home/images/sky.png";
|
||||||
|
}
|
@ -5,7 +5,8 @@ in {
|
|||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
background = {
|
background = {
|
||||||
path = "$HOME/git/nixos/modules/home/images/sky.png";
|
# Background image is set in host specific configuration
|
||||||
|
#path = "$HOME/git/nixos/modules/home/images/sky.png";
|
||||||
blur_passes = 2;
|
blur_passes = 2;
|
||||||
contrast = 1;
|
contrast = 1;
|
||||||
brightness = 0.5;
|
brightness = 0.5;
|
||||||
|
Reference in New Issue
Block a user