Compare commits

...

3 Commits

Author SHA1 Message Date
8711bd8968 [hyprland] Fix wpaperd
rendering of textures on vertical monitors
2025-03-31 18:24:45 -07:00
a17e8c0ec6 [altair] Renames from drew-desktop 2025-03-31 18:19:48 -07:00
a99b91994e [drew-desktop] Switch to wpaperd 2025-03-31 18:16:07 -07:00
9 changed files with 27 additions and 40 deletions

View File

@@ -35,7 +35,7 @@
{ self, nixpkgs, ... }@inputs: { self, nixpkgs, ... }@inputs:
{ {
nixosConfigurations = { nixosConfigurations = {
drew-desktop = (import ./system/hosts/drew-desktop) { altair = (import ./system/hosts/altair) {
inherit inputs; inherit inputs;
inherit self; inherit self;
inherit nixpkgs; inherit nixpkgs;

View File

@@ -134,6 +134,12 @@
no_hardware_cursors = true; no_hardware_cursors = true;
}; };
render = {
# This is a temporary fix for issues with wpaperd.
# See https://github.com/danyspin97/wpaperd/issues/117
expand_undersized_textures = false;
};
############### ###############
### PLUGINS ### ### PLUGINS ###
############### ###############

View File

@@ -1,28 +0,0 @@
{ ... }:
{
services.hyprpaper = {
enable = true;
settings =
let
clouds1 = "/home/drew/Pictures/Wallpaper/2025-02-18 - Haleakela Clouds.jpg";
clouds2 = "/home/drew/Pictures/Wallpaper/2025-02-18 - Haleakela Clouds 2.jpg";
sunset_wide = "/home/drew/Pictures/Wallpaper/2025-02-19 - Hawaii Sunset.jpg";
sunset_tall = "/home/drew/Pictures/Wallpaper/2025-02-20 - Hawaii Sunset - Tall.jpg";
in
{
ipc = "on";
splash = false;
preload = [
clouds1
clouds2
sunset_wide
sunset_tall
];
wallpaper = [
"DP-2,${clouds1}"
"DP-1,${sunset_tall}"
];
};
};
}

View File

@@ -1,7 +1,7 @@
{ ... }: { ... }:
{ {
users.users.drew.openssh.authorizedKeys.keys = [ users.users.drew.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPL+uF46A1oe+TgYoCcBQFcWtx5UJMdgczX+/rG/i55t drew@drew-desktop" "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPL+uF46A1oe+TgYoCcBQFcWtx5UJMdgczX+/rG/i55t drew@altair"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB0NbnQByo8sFmzsX5/0I6kWh+unTKxns2TsEPSzgYbD drew@mcp" "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB0NbnQByo8sFmzsX5/0I6kWh+unTKxns2TsEPSzgYbD drew@mcp"
]; ];
} }

View File

@@ -13,7 +13,7 @@
./qmk.nix ./qmk.nix
]; ];
networking.hostName = "drew-desktop"; # Define your hostname. networking.hostName = "altair"; # Define your hostname.
# Configure network proxy if necessary # Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/"; # networking.proxy.default = "http://user:password@proxy:port/";

View File

@@ -1,14 +1,23 @@
{ pkgs, ... }: { pkgs, ... }:
{ let
imports = map (x: ../../../home-manager + x) [ monitors = [
"/features/development/development.nix" "DP-1"
"/features/development/haskell.nix" "DP-2"
"/features/gaming.nix"
"/features/linux-desktop.nix"
"/features/hyprpaper.nix"
"/features/notes.nix"
"/features/eww"
]; ];
in
{
imports =
map (x: ../../../home-manager + x) [
"/features/development/development.nix"
"/features/development/haskell.nix"
"/features/gaming.nix"
"/features/linux-desktop.nix"
"/features/notes.nix"
"/features/eww"
]
++ [
(import ../../../home-manager/features/wallpaper.nix monitors)
];
home.stateVersion = "24.11"; home.stateVersion = "24.11";