Regenerated

This commit is contained in:
2026-04-20 19:05:01 +02:00
parent ce0c92ecc5
commit 79c559eb47
8 changed files with 567 additions and 397 deletions
@@ -1,6 +1,5 @@
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
{ pkgs, config, lib, ... }:
let
username = config.defaultUser or "henrov";
in
@@ -16,8 +15,6 @@ in
# Home Manager user-level configuration
############################
home-manager.users."${username}" = {
home.stateVersion = "26.05";
home.sessionVariables = {
SCREENSHOT_TOOL = "flameshot";
USERNAME = username;
@@ -27,5 +24,21 @@ in
home.file."Pictures/Screenshots/.keep" = {
text = ""; # empty file
};
home.file.".config/flameshot/flameshot.ini".text = ''
[General]
; Border color: A solid blend of @blue and @green (approximates the gradient)
buttonColor=#95c2e0
; Sidebar and inactive elements: Use @surface2 for subtlety
sidebarColor=#585b70
; Active buttons: Use @peach for contrast
buttonActiveColor=#fab387
; Text/icons: Use @text for readability
contrastingUIColor=#cdd6f4
showDesktopNotification=true
savePath=${config.xdg.picturesDir}/Screenshots
filenamePattern=$Y-$m-$d_$H-$M-$S
copyPathAfterCapture=true
'';
};
}
@@ -0,0 +1,32 @@
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
{ config, pkgs, ... }:
let
username = "henrov";
in
{
environment.systemPackages = with pkgs; [
kdePackages.kdeconnect-kde
];
systemd.user.services.kdeconnect = {
enable = true;
description = "KDE Connect daemon";
wantedBy = ["default.target"];
serviceConfig = {
ExecStart = "${pkgs.kdePackages.kdeconnect-kde}/bin/kdeconnectd";
Restart = "on-failure";
};
};
systemd.users.userLinger = [${username}];
# Hyprland config (if managed via Nix)
programs.hyprland = {
enable = true;
config = {
autostart = [
"systemctl --user start kdeconnect.service"
];
};
};
}