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

View file

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

View file

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

View file

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