This commit is contained in:
Till 2025-12-13 01:44:01 +01:00
parent 4b83d8c1f2
commit adc7e78e1c
4 changed files with 28 additions and 26 deletions

28
flake.lock generated
View file

@ -28,43 +28,43 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1758463745, "lastModified": 1765384171,
"narHash": "sha256-uhzsV0Q0I9j2y/rfweWeGif5AWe0MGrgZ/3TjpDYdGA=", "narHash": "sha256-FuFtkJrW1Z7u+3lhzPRau69E0CNjADku1mLQQflUORo=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "3b955f5f0a942f9f60cdc9cacb7844335d0f21c3", "rev": "44777152652bc9eacf8876976fa72cc77ca8b9d8",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nix-community", "owner": "nix-community",
"ref": "release-25.05", "ref": "release-25.11",
"repo": "home-manager", "repo": "home-manager",
"type": "github" "type": "github"
} }
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1762756533, "lastModified": 1765311797,
"narHash": "sha256-HiRDeUOD1VLklHeOmaKDzf+8Hb7vSWPVFcWwaTrpm+U=", "narHash": "sha256-mSD5Ob7a+T2RNjvPvOA1dkJHGVrNVl8ZOrAwBjKBDQo=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "c2448301fb856e351aab33e64c33a3fc8bcf637d", "rev": "09eb77e94fa25202af8f3e81ddc7353d9970ac1b",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "NixOS", "owner": "NixOS",
"ref": "nixos-25.05", "ref": "nixos-25.11",
"repo": "nixpkgs", "repo": "nixpkgs",
"type": "github" "type": "github"
} }
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1762596750, "lastModified": 1765186076,
"narHash": "sha256-rXXuz51Bq7DHBlfIjN7jO8Bu3du5TV+3DSADBX7/9YQ=", "narHash": "sha256-hM20uyap1a0M9d344I692r+ik4gTMyj60cQWO+hAYP8=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "b6a8526db03f735b89dd5ff348f53f752e7ddc8e", "rev": "addf7cf5f383a3101ecfba091b98d0a1263dc9b8",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -80,11 +80,11 @@
"nixpkgs": "nixpkgs_2" "nixpkgs": "nixpkgs_2"
}, },
"locked": { "locked": {
"lastModified": 1762869088, "lastModified": 1765583185,
"narHash": "sha256-Ynq1yVY1FTwec0/WuT+SP7CLnZg/w1/NhaZ/J7u5HP0=", "narHash": "sha256-v1WcrCvPJXjDwQTbWCuPnK+iCWhxNSa1z7MJAHF2+jw=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nur", "repo": "nur",
"rev": "351ca1659918fa4dacf758c7e630200005e48673", "rev": "65ea83daeb5af2b16e64d17820625db7ed5e8268",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -6,7 +6,7 @@
# messenger # messenger
signal-desktop signal-desktop
tdesktop telegram-desktop
# office # office
xournalpp xournalpp
@ -15,7 +15,7 @@
# text publishing # text publishing
libreoffice libreoffice
jdk jdk
poppler_utils poppler-utils
zotero zotero
lorem lorem
typst typst
@ -29,7 +29,7 @@
nyxt nyxt
# media # media
bookworm #bookworm
anki-bin anki-bin
qbittorrent qbittorrent
nicotine-plus nicotine-plus

View file

@ -3,7 +3,7 @@
{ {
programs.msmtp = { programs.msmtp = {
enable = true; enable = true;
extraConfig = '' configContent = ''
defaults defaults
logfile ${config.xdg.stateHome}/msmtp/msmtp.log logfile ${config.xdg.stateHome}/msmtp/msmtp.log
port 587 port 587

View file

@ -27,7 +27,7 @@
}; };
home.packages = with pkgs; [ home.packages = with pkgs; [
du-dust dust
fzf fzf
jq jq
progress progress
@ -51,16 +51,18 @@
programs.git = { programs.git = {
enable = true; enable = true;
userName = "Till"; settings = {
userEmail = "till@ktiu.net"; user.name = "Till";
user.email = "till@ktiu.net";
extraConfig = {
init = {
defaultBranch = "main";
};
};
};
lfs = { lfs = {
enable = true; enable = true;
}; };
extraConfig = {
init = {
defaultBranch = "main";
};
};
}; };
programs.bottom = { programs.bottom = {