about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* release.nix: Fix attribute for docbook_xsl_nsaszlig2022-03-241-1/+1
| | | | | | | | | | Commit 9e99cae10ab810bf354d44e8424884a618533e92 has renamed a few packages, one of them was from docbook5_xsl to docbook5_xsl_ns. However, the real name is "docbook_xsl_ns" instead, so I guess the author just forgot to remove the "5" :-) Signed-off-by: aszlig <aszlig@nix.build>
* modules/upower-minimal: Fix option descriptionaszlig2022-03-241-1/+1
| | | | | | | | | Regression introduced by 652ac49da16123016c36537dc28331649a63bf7b. This breaks the build of the manual because the <literal/> tag wasn't closed. Signed-off-by: aszlig <aszlig@nix.build>
* machines/dnyarri: Use async discard for root FSaszlig2022-03-241-1/+3
| | | | | | | | | | | | | | | | Another thing that was lurking around in configuration.nix, so it has been battle-tested for weeks. Given that all the layers from the hardware up to the LUKS container with the filesystem support discard, it does make sense to enable it. The disadvantage of using discard with LUKS is that attackers can now gain information about the file system in use. However, this is already public knowledge so given that discard increases performance, I decided to enable it despite some warnings[1] out there. [1]: https://asalor.blogspot.com/2011/08/trim-dm-crypt-problems.html Signed-off-by: aszlig <aszlig@nix.build>
* machines/dnyarri: Add fwupdaszlig2022-03-241-0/+8
| | | | | | | | Another thing that was hanging around in configuration.nix and with my new hardware it actually became useful since it does have capsule updates. Signed-off-by: aszlig <aszlig@nix.build>
* programs/zsh: Add syntax highlightingaszlig2022-03-241-1/+46
| | | | | | | | | | | | | I'm already using zsh-fast-syntax-highlighting since weeks via the configuration.nix and I actually forgot why I used this implementation rather than one of the others out there. However, since I'm also using Nushell[1] on a regular basis, I got quite used to syntax highlighting so that's why I added it to zsh as well. [1]: https://www.nushell.sh/ Signed-off-by: aszlig <aszlig@nix.build>
* dnyarri: Add default printeraszlig2022-03-241-0/+10
| | | | | | | | | | | | This is one of the few things that I originally added manually, simply because usually printing is not something I do regurarily. Since I had to re-do the CUPS config a few weeks ago, I decided to instead switch to ensurePrinters, simply because it makes it easier to just remove all the CUPS state and get to a known working configuration in the event that something breaks. Signed-off-by: aszlig <aszlig@nix.build>
* workstation/redshift: Lower nightly brightnessaszlig2022-03-241-0/+1
| | | | | | | I've been testing 0.5 for weeks now and already got sufficiently used to it so that I'd become blind if it would be the default value (1.0). Signed-off-by: aszlig <aszlig@nix.build>
* pkgs/build-support/build-sandbox: fix eval without aliasessternenseemann2022-03-241-1/+3
| | | | | | | nix_2_3 is an alias for nixVersions.nix_2_3 upstream now and the test infrastructure from nixpkgs seems to default to allowAliases = false; when evaluating (which is actually quite concerning for downstream usage).
* machines/sternenseemann/wolfgang: install emacs and clhs-lookupsternenseemann2022-03-242-1/+2
| | | | | These are from depot, so we can now finally add them in a non ad hoc way.
* pkgs/tvl: expose tvl's depot in vuizvuisternenseemann2022-03-243-38/+23
| | | | | | | | | | | | | | | | | | | | | | | depot is a nix-based monorepo which contains some great nix utilities like yants (a nix type system), runTestsuite, mergePatch and so on, a few interesting pure nix builders like buildLisp and buildGo and a few packages maintained by @Profpatsch and myself. This change exposes tvl completely as pkgs.tvl, but prevents hydra from building it using dontRecurseIntoAttrs as depot pins its own version of nixpkgs which is not easily overrideable, contains some expensive to build system configurations we are not interested in and even some notoriously indeterministic packages. Additionally it is possible to override pkgs.tvl to use a different or local version of depot: pkgs.tvl.override { tvlSrc = /home/lukas/src/depot; } To keep with @Profpatsch's previous solution, we pass in vuizvui's nixpkgs version to depot via nixpkgsBisectPath which may break packages in depot occasionally if nixpkgs causes breakage in TVL and depot isn't updated accordingly.
* pkgs/sternenseemann/acme: init at 2021-10-19sternenseemann2022-03-235-0/+221
| | | | | | | | | | | | | | | * Patch plan9port most notably including a patch that fixes the interpretation of X11 key events. This resolves the problem that using the shift key of the neo layout would cause acme to start interpreting left mouse button as right mouse button. * Add a wrapper derivation that puts acme and all executables it absolutely requires in PATH. The full Plan 9 userland can still be accessed via the 9 executable, but this allows executing just acme and access e.g. the GNU coreutils from inside of it — in case you do want to use cat -v. machines/sternenseemann/wolfgang: install acme
* treewide: reflect upstream dropping netbsd-openbsd aliassternenseemann2022-03-232-2/+2
|
* release.nix: update programs.sqlite to 22.05pre362445.9bc841fec1csternenseemann2022-03-221-2/+2
|
* pkgs/sternenseemann: drop some unused stuffsternenseemann2022-03-226-274/+0
|
* devhell/vim: Switch to vim-markdowndevhell2022-03-221-1/+1
| | | | | There are some issues with building `mkdx`, but I'm also not really happy with the way it does markdown.
* Switch to new Hydra URLaszlig2022-03-213-3/+3
| | | | | | | | | Since the old URL had all sorts of issues ranging from no HTTP/2 support to issues with XSRF protection, I decided to move the Hydra instance to https://hydra.build/ - a domain that I had laying around since years but didn't use so far. Signed-off-by: aszlig <aszlig@nix.build>
* machines/sternenseemann/wolfgang: use gtk3 pinentrysternenseemann2022-03-161-1/+1
|
* modules/upower: add a reload trigger if the config changesProfpatsch2022-03-161-3/+6
| | | | | | We should restart the service if its config changes. Since the service file from the upstream distribution is used, we have to manually add a trigger for that to happen.
* machines/Profpatsch: fix new nix settings namesProfpatsch2022-03-162-5/+6
| | | | It’s only checked at the end LOL
* machines/profpatsch/base-workstation: add upower with suspendProfpatsch2022-03-163-0/+99
| | | | | Upstream is dumb, but the tool is certainly useful, so let’s patch it to make it workable and then also patch the nixos module …
* machines/sternenseemann/wolfgang: add direnv and lorristernenseemann2022-03-151-0/+3
|
* machines/sternenseemann: use selenized-white theme for footsternenseemann2022-03-151-0/+2
|
* profiles/packages: Add packagesdevhell2022-03-131-0/+3
| | | | | | | | | | | | | | | | I'm particularly interested in `gurk-rs` as it's a Signal client that runs in the terminal. It's in early development but it looks already amazing and it doesn't rely on the Java library. `termusic` is also a nice music player written in Rust that I've come to enjoy when MPD doesn't make sense. Lastly, `writedisk` is just mad awesome. It can write ISOs of all sorts to USB stick, and it even knows how to deal with Windows ISOs. It writes those ISOs really fast as well, so I'm guessing it somehow measures the ideal block size. Either way, this is much more convenient than having to invoke `dd` every time I have to write an ISO. Funny enough, this too is a Rust application.
* machines/profpatsch: add leguin simple setupProfpatsch2022-03-082-0/+96
| | | | Mostly copied from haku
* profiles/packages: Re-add pulseaudiodevhell2022-03-061-0/+1
| | | | Once again, I forget that some parts of my system still need this.
* devhell/vim: Add vim-shellcheckdevhell2022-03-031-0/+1
|
* profiles/packages: More changesdevhell2022-03-031-2/+3
|
* pkgs/profpatsch/xdg-open: fix evalsternenseemann2022-03-022-3/+3
| | | | | | pkgs.vuizvui is made available via an overlay that only affects a system configuration with the base vuizvui module included. When importing the pkgs tree directly, normal rules apply.
* machines/sternenseemann: use upower over low-batterysternenseemann2022-03-023-49/+7
| | | | | | | | | | | | | | I had some weird issues with the low-battery udev rule, mainly it not triggering when it should. Usually, the event would only get processed when the battery changed state, e.g. from Discharging to Charging. Consequently, the laptop would hibernate when you'd save it from running out of battery by plugging it in, but, if you forgot, it'd be content to run out of battery. I'll try upower instead now which is the “normal” solution used by the major desktop environments. It's has some extra complexity, as it also provides a d-bus API for other applications to use, but we'll see how it goes.
* modules/thinkpad: load the acpi_call kernel module for TLPsternenseemann2022-03-021-0/+10
| | | | | | This kernel module is required for some operations supported by TLP (e.g. tlp recalibrate), so we should enable it and be it to prevent confusing error messages (as I encountered).
* profiles/packages: Remove some cruft, add new cruftdevhell2022-03-021-8/+1
|
* machines/devhell: maxJobs -> max-jobsdevhell2022-03-025-6/+8
|
* aszlig/managed: skype -> skypeforlinuxdevhell2022-03-021-1/+1
|
* aszlig/workstation: youtubeDL -> youtube-dldevhell2022-03-021-1/+1
|
* {aszlig,devhell}/profiles: Rename more packagesdevhell2022-03-022-8/+8
| | | | Even more packages are being renamed.
* treewide: Rename packagesdevhell2022-03-026-8/+8
| | | | More packages have been renamed recently.
* machines/profpatsch: use new nix.settings attributeProfpatsch2022-03-022-5/+5
|
* treewide: Fix broken package symbolsProfpatsch2022-03-027-10/+10
| | | | | | | | Due to unnecessary renames in https://github.com/NixOS/nixpkgs/pull/161146 I replaced the packages with the ones the error messages mentioned, I have not checked whether they are actually a no-op replacement.
* modules/sternenseemann/sway: import all relevant vars into dbussternenseemann2022-03-011-1/+1
| | | | | dbus-activation-environment can also update the systemd user environment via the --systemd flag which is neat and we may use in the future.
* machines/sternenseemann: only start gnome-keyring for secretssternenseemann2022-03-011-2/+1
| | | | | I don't use PKSC11 (to my knowledge) nor the ssh agent, so we can disable them. The export of SSH_AUTH_SOCK didn't work anyway.
* modules/sternenseemann/sway: wrap sway in systemd-catsternenseemann2022-03-011-1/+2
| | | | | | This will make sway's output get sent to the journal which is useful when tracking down problems (as the console is cleared immediately when sway exits).
* modules/sternenseemann/sway: don't use dbus-run-sessionsternenseemann2022-03-011-2/+1
| | | | | | At some point this was required to fix some issue I don't remember, but seems like starting a whole new dbus session now messes with the XDG portals, breaking the settings and secrets portal at least
* treewide: reflect removal of pulseaudioLight aliassternenseemann2022-02-283-3/+3
| | | | | pulseaudioLight has been the same as pulseaudio for a while (apparently since 2018). The alias has finally been removed now.
* machines/profpatsch: use alacritty as terminal-emulatorProfpatsch2022-02-283-8/+7
| | | | | | | This is the alacritty wrapper that is added from `~/bin`. This is a bit badly set up atm, but might change once I move things together into one repo.
* machines/profpatsch/workstation: make emacsclient create new framesProfpatsch2022-02-281-1/+1
| | | | | Ideally I’d start the emacs server in a systemd service, make it autorestart and always start frames, but that’s the next step.
* pkgs/profpatsch: remove easy-dhall-nix, use dhall from nixpkgsProfpatsch2022-02-286-21/+13
|
* machines/shiki: add stretch & bendProfpatsch2022-02-281-0/+4
|
* machines/profpatch: add tagtime serviceProfpatsch2022-02-281-1/+17
| | | | | tagtime was added to nixpkgs in https://github.com/NixOS/nixpkgs/pull/154027
* Profpatsch/profpatsch.de: more talkiesProfpatsch2022-02-281-2/+3
|
* Profpatsch/xdg-open: add application/mswordProfpatsch2022-02-281-0/+4
|