added hyprpaper config, hosts

This commit is contained in:
willifan 2024-05-12 16:27:17 +02:00
parent 641cf5ad70
commit 93ec6fff21
12 changed files with 75 additions and 5 deletions

View file

@ -44,7 +44,7 @@
#home-manager.users.willifan = import ./users/willifan/home;
# Optionally, use home-manager.extraSpecialArgs to pass arguments to home.nix
}
./hosts/common
./hosts
./users/willifan
];
};

7
hosts/Lenni/default.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
imports = [
./hardware-configuration.nix
#./disko.nix
];
}

0
hosts/Lenni/disko.nix Normal file
View file

View file

@ -2,7 +2,6 @@
{
networking.hostName = "Lenni";
imports = [
./hardware-configuration.nix
./nix-ld.nix
./boot.nix
];

7
hosts/default.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
imports = [
./common
./Lenni
];
}

View file

@ -4,7 +4,7 @@
imports = [
./dev
#./hyprland
./hyprland
./theme
#./firefox.nix

View file

@ -2,7 +2,10 @@
{
imports = [
./hyprland.nix
./kanshi.nix
#./hypridle.nix
#./hyprland.nix
#./hyprlock.nix
./hyprpaper.nix
#./kanshi.nix
];
}

View file

@ -0,0 +1,11 @@
{ pkgs, home-manager, ...}:
{
home-manager.users.willifan = {
services.hypridle = {
enable = true;
settings = {
};
};
};
}

View file

@ -0,0 +1,11 @@
{ pkgs, home-manager, ...}:
{
home-manager.users.willifan = {
wayland.windowManager.hyprland = {
enable = true;
settings = {
};
};
};
}

View file

@ -0,0 +1,13 @@
{ pkgs, home-manager, ...}:
{
security.pam.services.hyprlock = {};
home-manager.users.willifan = {
services.hyprlock = {
enable = true;
settings = {
};
};
};
}

View file

@ -0,0 +1,19 @@
{ pkgs, home-manager, ...}:
{
home-manager.users.willifan = {
services.hyprpaper = {
enable = true;
settings = {
preload = "/home/willifan/.config/hypr/Bob Ross.png";
wallpaper = ",/home/willifan/.config/hypr/Bob Ross.png";
splash = true;
ipc = "off";
};
};
};
}