Regenerated

This commit is contained in:
2026-04-02 15:50:50 +02:00
parent a757b3ce54
commit 427364772f
3 changed files with 321 additions and 321 deletions
+307 -307
View File
File diff suppressed because it is too large Load Diff
+7 -7
View File
@@ -450,7 +450,6 @@ This is top file of this level which contains just an import statement for all r
{ pkgs, config, lib, ... }:
let
# Resolve the default username from host config
username = config.defaultUser or "henrov";
in
{
@@ -458,23 +457,24 @@ in
# System-level packages
############################
environment.systemPackages = with pkgs; [
flameshot # screenshot tool
flameshot
];
############################
# Home Manager user-level configuration
############################
home-manager.users."${username}" = {
home.stateVersion = "26.05";
home.sessionVariables = {
SCREENSHOT_TOOL = "flameshot";
USERNAME = username;
};
# Create ~/Pictures/Screenshots
home.file."Pictures/Screenshots/.keep" = {
text = "";
directory = true; # ensures the parent folder exists
};
# Create ~/Pictures/Screenshots by touching a dummy file
home.file."Pictures/Screenshots/.keep" = {
text = ""; # empty file
};
};
}
#+END_SRC
@@ -1,7 +1,6 @@
{ pkgs, config, lib, ... }:
let
# Resolve the default username from host config
username = config.defaultUser or "henrov";
in
{
@@ -9,22 +8,23 @@ in
# System-level packages
############################
environment.systemPackages = with pkgs; [
flameshot # screenshot tool
flameshot
];
############################
# Home Manager user-level configuration
############################
home-manager.users."${username}" = {
home.stateVersion = "26.05";
home.sessionVariables = {
SCREENSHOT_TOOL = "flameshot";
USERNAME = username;
};
# Create ~/Pictures/Screenshots
home.file."Pictures/Screenshots/.keep" = {
text = "";
directory = true; # ensures the parent folder exists
};
# Create ~/Pictures/Screenshots by touching a dummy file
home.file."Pictures/Screenshots/.keep" = {
text = ""; # empty file
};
};
}