added hyprpaper config, hosts
This commit is contained in:
parent
641cf5ad70
commit
93ec6fff21
12 changed files with 75 additions and 5 deletions
|
@ -44,7 +44,7 @@
|
||||||
#home-manager.users.willifan = import ./users/willifan/home;
|
#home-manager.users.willifan = import ./users/willifan/home;
|
||||||
# Optionally, use home-manager.extraSpecialArgs to pass arguments to home.nix
|
# Optionally, use home-manager.extraSpecialArgs to pass arguments to home.nix
|
||||||
}
|
}
|
||||||
./hosts/common
|
./hosts
|
||||||
./users/willifan
|
./users/willifan
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
7
hosts/Lenni/default.nix
Normal file
7
hosts/Lenni/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./hardware-configuration.nix
|
||||||
|
#./disko.nix
|
||||||
|
];
|
||||||
|
}
|
0
hosts/Lenni/disko.nix
Normal file
0
hosts/Lenni/disko.nix
Normal file
|
@ -2,7 +2,6 @@
|
||||||
{
|
{
|
||||||
networking.hostName = "Lenni";
|
networking.hostName = "Lenni";
|
||||||
imports = [
|
imports = [
|
||||||
./hardware-configuration.nix
|
|
||||||
./nix-ld.nix
|
./nix-ld.nix
|
||||||
./boot.nix
|
./boot.nix
|
||||||
];
|
];
|
||||||
|
|
7
hosts/default.nix
Normal file
7
hosts/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./common
|
||||||
|
./Lenni
|
||||||
|
];
|
||||||
|
}
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
./dev
|
./dev
|
||||||
#./hyprland
|
./hyprland
|
||||||
./theme
|
./theme
|
||||||
|
|
||||||
#./firefox.nix
|
#./firefox.nix
|
||||||
|
|
|
@ -2,7 +2,10 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./hyprland.nix
|
#./hypridle.nix
|
||||||
./kanshi.nix
|
#./hyprland.nix
|
||||||
|
#./hyprlock.nix
|
||||||
|
./hyprpaper.nix
|
||||||
|
#./kanshi.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
|
@ -0,0 +1,11 @@
|
||||||
|
{ pkgs, home-manager, ...}:
|
||||||
|
{
|
||||||
|
home-manager.users.willifan = {
|
||||||
|
services.hypridle = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -0,0 +1,11 @@
|
||||||
|
{ pkgs, home-manager, ...}:
|
||||||
|
{
|
||||||
|
home-manager.users.willifan = {
|
||||||
|
wayland.windowManager.hyprland = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
13
users/willifan/graphical/hyprland/hyprlock.nix
Normal file
13
users/willifan/graphical/hyprland/hyprlock.nix
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
{ pkgs, home-manager, ...}:
|
||||||
|
{
|
||||||
|
security.pam.services.hyprlock = {};
|
||||||
|
|
||||||
|
home-manager.users.willifan = {
|
||||||
|
services.hyprlock = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
19
users/willifan/graphical/hyprland/hyprpaper.nix
Normal file
19
users/willifan/graphical/hyprland/hyprpaper.nix
Normal 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";
|
||||||
|
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue