Compare commits
3 Commits
bec89ba571
...
8711bd8968
| Author | SHA1 | Date | |
|---|---|---|---|
| 8711bd8968 | |||
| a17e8c0ec6 | |||
| a99b91994e |
@@ -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;
|
||||||
|
|||||||
@@ -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 ###
|
||||||
###############
|
###############
|
||||||
|
|||||||
@@ -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}"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -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"
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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/";
|
||||||
@@ -1,13 +1,22 @@
|
|||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
|
let
|
||||||
|
monitors = [
|
||||||
|
"DP-1"
|
||||||
|
"DP-2"
|
||||||
|
];
|
||||||
|
in
|
||||||
{
|
{
|
||||||
imports = map (x: ../../../home-manager + x) [
|
imports =
|
||||||
|
map (x: ../../../home-manager + x) [
|
||||||
"/features/development/development.nix"
|
"/features/development/development.nix"
|
||||||
"/features/development/haskell.nix"
|
"/features/development/haskell.nix"
|
||||||
"/features/gaming.nix"
|
"/features/gaming.nix"
|
||||||
"/features/linux-desktop.nix"
|
"/features/linux-desktop.nix"
|
||||||
"/features/hyprpaper.nix"
|
|
||||||
"/features/notes.nix"
|
"/features/notes.nix"
|
||||||
"/features/eww"
|
"/features/eww"
|
||||||
|
]
|
||||||
|
++ [
|
||||||
|
(import ../../../home-manager/features/wallpaper.nix monitors)
|
||||||
];
|
];
|
||||||
|
|
||||||
home.stateVersion = "24.11";
|
home.stateVersion = "24.11";
|
||||||
Reference in New Issue
Block a user