about summary refs log tree commit diff
path: root/home/wm/gammastep (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-01-15ref(modules/prometheus): don't backup the dataFranck Cuny1-2/+0
I don't care if I lose this data, and it's creating a lot of churn in the backups and consuming a lot of space.
2023-01-15feat(modules/backup): enable max compressionFranck Cuny1-1/+1
2023-01-12fix(modules/gitea): correctly set the variable for log levelFranck Cuny1-1/+1
2023-01-11ref(home/swayidle): configure it using upstream moduleFranck Cuny1-18/+24
2023-01-10bump flakesFranck Cuny1-21/+21
• Updated input 'emacs-overlay': 'github:nix-community/emacs-overlay/dca61513fcd032f348aa2e3fe4606d52e848e7ce' (2023-01-09) → 'github:nix-community/emacs-overlay/b537e3cba7307729bf80cdc8ef2b176727cbb645' (2023-01-10) • Updated input 'emacs-overlay/nixpkgs': 'github:NixOS/nixpkgs/0c9aadc8eff6daaa5149d2df9e6c49baaf44161c' (2023-01-08) → 'github:NixOS/nixpkgs/35f1f865c03671a4f75a6996000f03ac3dc3e472' (2023-01-09) • Updated input 'home-manager': 'github:nix-community/home-manager/b0a3689878d4c2e8a1b02cecf8319ba8c53da519' (2023-01-09) → 'github:nix-community/home-manager/176e455371a8371586e8a3ff0d56ee9f3ca2324e' (2023-01-10) • Updated input 'naersk/nixpkgs': 'github:NixOS/nixpkgs/0c9aadc8eff6daaa5149d2df9e6c49baaf44161c' (2023-01-08) → 'github:NixOS/nixpkgs/35f1f865c03671a4f75a6996000f03ac3dc3e472' (2023-01-09) • Updated input 'nixpkgs': 'github:NixOS/nixpkgs/8c54d842d9544361aac5f5b212ba04e4089e8efe' (2023-01-08) → 'github:NixOS/nixpkgs/54644f409ab471e87014bb305eac8c50190bcf48' (2023-01-10) • Updated input 'nur': 'github:nix-community/NUR/7d6f34170b42fe49740fb9b7e4b4a7fdf530b581' (2023-01-09) → 'github:nix-community/NUR/2c47b2a0053cdb36cc08353f79eebf7a055fa18f' (2023-01-10) • Updated input 'rust': 'github:oxalica/rust-overlay/3488cec01351c2f1086b02a3a61808be7a25103e' (2023-01-09) → 'github:oxalica/rust-overlay/9724998ea2caf23214674bf0c2cdf6ec0b1719af' (2023-01-10)
2023-01-10fix(modules/gitea): what a messFranck Cuny1-3/+6
2023-01-10ref(modules/nix): update a number of settings for nixFranck Cuny1-4/+15
Inspired by https://jackson.dev/post/nix-reasonable-defaults/
2023-01-10feat(hosts/tahoe): rotate the screen 90 degreeFranck Cuny1-2/+6
The machine is connected to a rotated screen.
2023-01-10fix(services/unifi): remove prometheus.exporters.unpollerFranck Cuny1-12/+0
This does not exist in 22.11, only 23.05. Will figure out the proper way to monitor it later.
2023-01-10fix(modules/gitea): restore settings for nix 22.11Franck Cuny1-7/+3
2023-01-10fix(hosts/tahoe): workaround md raid boot uuid issue in 22.11Franck Cuny1-2/+2
Due to md device uuid availability issue in initrd. Refs: - https://github.com/NixOS/nixpkgs/issues/196800 - https://github.com/NixOS/nixpkgs/issues/199551
2023-01-09fix(modules/unifi): pin the package for mongodbFranck Cuny1-0/+1
Similar to 6c0211b.
2023-01-09fix(hosts/tahoe): mask mdmonitorFranck Cuny1-0/+5
This is a broken unit and I don't need it (see https://github.com/nixos/nixpkgs/issues/72394).
2023-01-09ref(flake): let's stay on stableFranck Cuny2-33/+33
There's no need to be on unstable, I prefer break things only twice a year instead of every time I run an update ...
2023-01-08fix(modules/unifi): proper monitoring and latest versionFranck Cuny2-3/+18
They've recently removed from nixpkgs the version of mongodb that was used by unifi. I updated to the latest version (7) and did the migration of the DB manually (see https://github.com/NixOS/nixpkgs/pull/207382): ``` nix-shell -p mongodb-3_4 mongodb-tools mongod --dbpath /var/lib/unifi/data/db --logpath /var/log/unifi/repair.log --repair mongod --dbpath /var/lib/unifi/data/db --logpath /var/log/unifi/repair.log --journal --fork mongodump --out=/root/mongodump pkill mongod exit nix-shell -p mongodb-4_2 mongodb-tools mv /var/lib/unifi/data/db /var/lib/unifi/data/db_bak mkdir /var/lib/unifi/data/db mongod --dbpath /var/lib/unifi/data/db --logpath /var/log/unifi/repair.log --journal --fork mongorestore /root/mongodump pkill mongod ``` Once this was done, the exporter was also broken, has it has been renamed. There are two different services for it in nixpkgs: `services.unpoller` and `services.prometheus.exporters.unpoller`. Only the last one works. From what I can tell, everything is working now.
2023-01-07ref(flake): use latest version for nixosFranck Cuny2-47/+31
Don't pin, just use latest.
2023-01-07fix(home/emacs): don't install nixpkgs-fmt hereFranck Cuny1-1/+0
2023-01-07fix(home/mail): set the full path to notmuch config for afewFranck Cuny1-2/+2
It's expecting the configuration in a different place. I think some environment variable are not propagated correctly, might look into this later.
2023-01-07fix(home/python): don't specify the versionFranck Cuny1-2/+1
Use what ever is the latest version set by nix, and don't install poetry (it seems to be broken at the moment).
2023-01-07fix(home/sway): set the environment variable correctlyFranck Cuny1-1/+1
2023-01-07fix(modules/gitea): the linter corrupted the file ...Franck Cuny1-15/+0
2023-01-07fix(modules/sendsms): run it as root for nowFranck Cuny1-2/+0
I need to figure a way to make it run as a dynamic user, while still having access to the credentials for twilio, while not changing the permissions to the file.
2023-01-07fix(modules/unifi): remove the pollerFranck Cuny1-32/+0
The poller refuses to start, as the name of the binary has been updated, and the upstream module is not reflecting that change. The service has also been renamed from `unifi-poller` to `unpoller`, but this is not working for now. Let's get rid of it as a temporary fix while looking at the correct solution.
2023-01-07fix(modules/grafana): a number of options have been renamedFranck Cuny2-8/+11
2023-01-07fix(modules/gitea): a number of options have been renamedFranck Cuny1-8/+35
2023-01-07feat(home/packages): add tool masked-emailsFranck Cuny4-60/+343
2023-01-07fix(home/emacs): rename the packageFranck Cuny1-1/+1
``` trace: emacsPgtkNativeComp has been renamed to emacsPgtk, please update your expression. ```
2023-01-07