Change wallpaper

This commit is contained in:
muon 2025-08-12 08:52:20 +00:00
parent a40f4df5ae
commit 69ac84932a
5 changed files with 42 additions and 21 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.2 MiB

View file

@ -1,13 +1,21 @@
{ config, lib, pkgs, inputs, system, sources, modulesPath, ... }:
let cfg = config.mods;
{
config,
lib,
pkgs,
inputs,
system,
sources,
modulesPath,
...
}: let
cfg = config.mods;
in {
# Hardware
imports = [
./hardware-configuration.nix
"${
builtins.fetchTarball {
url =
"https://github.com/nix-community/disko/archive/refs/tags/v1.12.0.tar.gz";
url = "https://github.com/nix-community/disko/archive/refs/tags/v1.12.0.tar.gz";
sha256 = "0wbx518d2x54yn4xh98cgm65wvj0gpy6nia6ra7ns4j63hx14fkq";
}
}/module.nix"
@ -21,6 +29,7 @@ in {
pkgs.libratbag
pkgs.piper
pkgs.libpq
pkgs.qmk
];
# System
@ -28,8 +37,8 @@ in {
networking.hostName = "murk";
networking.hostId = "a2309090";
mods.home.file = ./home.nix;
nix.settings.trusted-users = [ "root" "muon" ];
users.users.muon.extraGroups = [ "docker" ];
nix.settings.trusted-users = ["root" "muon"];
users.users.muon.extraGroups = ["docker"];
# Modules
mods.desktop.enable = true;
@ -48,7 +57,7 @@ in {
# Persist
environment.persistence."/persist" = {
directories = [ "/etc/NetworkManager" "/var/lib/NetworkManager" ];
directories = ["/etc/NetworkManager" "/var/lib/NetworkManager"];
};
# Hardware preferences
@ -88,7 +97,7 @@ in {
mode = "2560x1440";
position = "0x0";
rate = "60.00";
dpi = 96;
dpi = 72;
};
};
right = {
@ -98,7 +107,7 @@ in {
mode = "2560x1440";
position = "2560x0";
rate = "60.00";
dpi = 96;
dpi = 72;
};
};
};
@ -106,6 +115,9 @@ in {
## Mouse
services.libinput.mouse.accelProfile = "flat";
## Keyboard
hardware.keyboard.qmk.enable = true;
# Version of first install
system.stateVersion = "23.05";
}

View file

@ -27,14 +27,13 @@ in {
pulseaudio
pavucontrol
alsa-utils
qmk
qmk_hid
qmk-udev-rules
rustdesk-flutter
docker
fish
devenv
dbeaver-bin
ruff
]
# Non-free </3
++ [google-cloud-sdk google-cloud-sql-proxy];

Binary file not shown.

Before

Width:  |  Height:  |  Size: 283 KiB

After

Width:  |  Height:  |  Size: 19 MiB

Before After
Before After