about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
* modules/core/tests.nix: ignore removed kibana servicesternenseemann2023-11-201-2/+1
| | | | | | Removed due to a lack of maintenance: http://github.com/nixos/nixpkgs/commit/022ee4d701878c185785ce72dd436639dd687199 The ELK NixOS test continues to exist.
* pkgs/sternenseemann/emoji-generic: truly allow text 2.0sternenseemann2023-11-191-2/+2
|
* pkgs/sternenseemann/saneterm: use Python 3.10sternenseemann2023-11-191-1/+1
|
* pkgs/sternenseemann/tep: update to Unicode 15.1sternenseemann2023-11-191-2/+2
|
* pkgs/sternenseemann/emoji-generic: allow text 2.0 / GHC 9.4sternenseemann2023-11-191-3/+3
|
* machines/wolfgang: Fix attrname for thunderbirdaszlig2023-10-111-1/+1
| | | | | | | | | | | | | | The "thunderbird-wayland" attribute has been an alias for a long time and with a recent cleanup[1] of old aliases, the alias got dropped and we now get an eval error due to a missing attribute. Since "thunderbird-wayland" already was an alias, it should be safe to just use "thunderbird". [1]: https://github.com/NixOS/nixpkgs/commit/0c51bf975b5be87375d73aa5f3ba21542c240635 Signed-off-by: aszlig <aszlig@nix.build> Cc: @sternenseemann
* Revert "machines/legosi: move to openssl 1.1 in nginx for now"Profpatsch2023-09-151-3/+0
| | | | | | This reverts commit e08ff60d61bb18dcd14a47f2ee6dec66ad8cbd91. The CVE fixes have long been upstreamed.
* core/tests: Fix checks for {doku,media}wikiaszlig2023-09-151-2/+2
| | | | | | | | | | The module options have been restructured in a way that the attribute set for defining the actual sites is now in a dedicated "sites" option instead of eg. services.mediawiki directly, so the checks of whether we should include this for testing always return true since services.mediawiki is *always* a non-empty attribute set. Signed-off-by: aszlig <aszlig@nix.build>
* machines: Remove "mailserver"aszlig2023-09-152-121/+0
| | | | | | | | | | | | | This one never was in use and it was WIP code to do a more fleshed out mailserver configuration that should match an Ansible deployment of a mailserver we had back then at OpenLab. The machine was never in use (which is apparent from its configuration) and I even *added* it to Vuizvui from "LaberNix" (Vuizvui's predecessor) in 915e56fb4453b0701a423b0c96fb145318162ffd probably just for the sake of completeness. Signed-off-by: aszlig <aszlig@nix.build>
* Fix eval error due to removed moduleaszlig2023-09-151-1/+0
| | | | | | | | | | | In 75ea723caea05056810dad9160bc93e571c77985, I removed a bunch of modules in a series of fixups but forgot to do a final eval check. This broke evaluation for all the machines and tests because the module-list.nix file is not only needed for all the machines but also for figuring out which tests we need to run for which machine config. Signed-off-by: aszlig <aszlig@nix.build>
* machines: Remove tyree and brawndoaszlig2023-09-1414-445/+0
| | | | | | | | | | | | | The former no longer exists and the latter has a new hardware and it's self-managed by the owner now (which is always the best IMHO). With both machines gone, we no longer need the "managed" profile and the BFQ module that was used for the old hardware of Brawndo was no longer used anywhere else. Same with the T100HA module, since Tyree was an ASUS T100HA and apart from the module being probably very much outdated we don't have another such hardware in Vuizvui. Signed-off-by: aszlig <aszlig@nix.build>
* profiles: Revert "Use Nix stable for nixos-option"aszlig2023-09-141-8/+0
| | | | | | | | | | | | | | | | This reverts commit b9a7b3f0710ed828c9ec7562a6e641810fadd61b. Our override is no longer needed and it actually doesn't build anymore since even current stable Nix (2.17.0) is too new for nixos-option. This is why in nixpkgs, there is a specific override for nixos-option which uses Nix 2.15 instead. For us this essentially means that we can drop the override, since either someone fixes nixos-option to work with newer Nix versions or we get a specific override that doesn't interfere with our (as in Vuizvui) override of the "nix" attribute. Signed-off-by: aszlig <aszlig@nix.build>
* machines/sternenseemann/wolfgang: install gpxseesternenseemann2023-08-091-0/+1
|
* modules/sternenseemann/desktop-sway: restore old foot URL keybindingsternenseemann2023-08-091-0/+2
|
* machines/sternenseemann/fonts: reflect option deprecationssternenseemann2023-08-091-2/+2
|
* Revert "firefox: Make FOUC less annoying"aszlig2023-08-091-7/+0
| | | | | | | | | | | | | This reverts commit e868bfeca5501c7c02f1fc1013ea6cc7e79af043. Unfortunately, this causes some sites to be outright unreadable since they seem to rely on a certain set of default colors. Given that the FOUC is already pretty minimal in Firefox, I think it's really not worth breaking a bunch of sites just to get rid of the flashing, at least until we found a better way to prevent it entirely. Signed-off-by: aszlig <aszlig@nix.build>
* machines/profpatsch: stay with syntaptics for nowProfpatsch2023-08-051-0/+2
|
* pkgs/gpodder: Update to latest upstream masteraszlig2023-08-051-3/+3
| | | | | | | | The latest Git master version contains a bunch of fixes for yt-dlp integration and since most of my feeds are actually YouTube channels, it just makes sense to upgrade. Signed-off-by: aszlig <aszlig@nix.build>
* workstation: Remove services.xserver.layoutaszlig2023-08-041-1/+0
| | | | | | | | | | | This is already defined in the base profile, so we really don't need to define it twice, espacially because since ee758fdcdbbcae14d7a50d1809c1b2 both definitions are conflicting. I actually had this removed locally but forgot to stage this for the aforementioned commit. Signed-off-by: aszlig <aszlig@nix.build>
* profiles/base: Fix XKB Dvorak keyboard layoutaszlig2023-08-021-1/+2
| | | | | | | | | | | | The right XKB configuration should be using "us" as its layout and "dvorak" as the variant, because there are other such variants such as "it", "fr" or "de" and just using "dvorak" as the layout has very long been an alias that now has been removed[1] in the latest version of xkeyboard-config. [1]: https://gitlab.freedesktop.org/xkeyboard-config/xkeyboard-config/-/commit/470ad2cd8fea84d7210377161d86b31999bb5ea6 Signed-off-by: aszlig <aszlig@nix.build>
* profiles/packages: fonts.fonts -> fonts.packagesdevhell2023-07-301-1/+1
| | | | This is a recent upstream change.
* modules/desktop-sway: make foot dpi-aware againsternenseemann2023-07-301-0/+1
| | | | The default of this setting changed in foot 1.15.0.
* firefox: Add a few more prefs from Betterfoxaszlig2023-07-191-0/+14
| | | | | | | | | | | | | | | | | I roughly went through the preferences set by Betterfox[1] and checked whether they'd make sense for my Firefox version. While most of these options are pretty straightforward, the captive and connectivity services are features for convenience, eg. when travelling. However, since the only thing they do is giving UI hints that otherwise can be found out via a quick detour to the shell or visiting a random "http://" URL I don't think the convenience outweights repeatedly pinging detectportal.firefox.com. [1]: https://github.com/yokoffing/Betterfox Signed-off-by: aszlig <aszlig@nix.build>
* games/gog-unpack: Fix unpacking with newer bsdtaraszlig2023-07-171-1/+1
| | | | | | | | | | | | | | With newer bsdtar, extraction fails because of this error: bsdtar: Pathname cannot be converted from UTF-8 to current locale. bsdtar: Archive entry has empty or unreadable filename ... skipping. bsdtar: Error exit delayed from previous errors. The reason is that the current locale isn't set during Nix builds, so in order for bsdtar to work properly, let's set it to C.UTF-8 so that it hopefully doesn't convert anything at all (which is what we want). Signed-off-by: aszlig <aszlig@nix.build>
* games/monogame-patcher: Fix evaluationaszlig2023-07-171-3/+3
| | | | | | | | | | | | The evaluation error is: error: function 'anonymous lambda' called without required argument 'pname' This is because the "baseName" attributes of the dotnet tooling have changed to the more common "pname" attributes that we use throughout nixpkgs. Signed-off-by: aszlig <aszlig@nix.build>
* games/build-unity: Allow to pass wrapper argsaszlig2023-07-171-1/+1
| | | | | | | This is handy if we want to pass further arguments to the makeWrapper call without either replacing installPhase or wrapping twice. Signed-off-by: aszlig <aszlig@nix.build>
* pkgs/games: Fix deprecated package attribute namesaszlig2023-07-172-6/+6
| | | | | | | These package attribute names have been renamed a long time ago and no longer evaluate in current nixpkgs. Signed-off-by: aszlig <aszlig@nix.build>
* workstation: Don't wait for all NICs to be onlineaszlig2023-07-151-0/+4
| | | | | | | | I occasionally run wireguard setups, sometimes broken beyond repair, and I really don't care whether those are online or not as long as *any* interface is alive. Signed-off-by: aszlig <aszlig@nix.build>
* profiles/base: Use Nix stable for nixos-optionaszlig2023-07-141-0/+8
| | | | | | | | | Right now, nixos-option fails to build with latest nixUnstable and since I currently don't have a lot of time to properly fix it and also don't care a whole lot about nixos-option, I decided to override it using the normal Nix stable package. Signed-off-by: aszlig <aszlig@nix.build>
* firefox: Make FOUC less annoyingaszlig2023-07-141-0/+7
| | | | | | | | | | | | | | | | | | Flash of unstyled content[1] is a common issue in browsers and happens whenever transitioning to a page without the full styles being loaded. For the most part, Firefox does a good job preventing FOUC, but in some occasions the default colors still show up. Since I do prefer a dark color scheme anyway, let's actually make sure that the default colors represent a dark color scheme. The reason why I picked the dark colors from startpage.com is purely because it was the next best to pick some colors from, rather than personal preference. [1]: https://en.wikipedia.org/wiki/Flash_of_unstyled_content Signed-off-by: aszlig <aszlig@nix.build>
* profiles/packages: Remove obs-studiodevhell2023-06-271-1/+0
| | | | Don't need it as much as I thought.
* hardware/pulse1502: Fix build against kernel 6.3aszlig2023-06-221-3/+3
| | | | | | | | | | | | | | The nvme-suspend-quirk patch doesn't apply anymore with kernel 6.3 because kernel 6.3 added a new quirk (NVME_QUIRK_NO_SECONDARY_TEMP_THRESH) to the nvme_quirks enum. To fix this, I just edited the patch to refer to the newly added quirk and increase the bitflag by one. With this, the patch applies, but I haven't yet built the kernel nor did I actually test this on the target machine. Signed-off-by: aszlig <aszlig@nix.build>
* pkgs/sternenseemann/lib: needs pkgs.libsternenseemann2023-06-071-2/+3
| | | | | | | Due to the switch to vuizvui's callPackage in b9401bd57cfff9955649d5ccd3b346271d787a2e, pkgs.sternenseemann.lib would suddenly get a self reference as the `lib` argument which is of course no good.
* dnyarri: Fix eval error for gpodder attributeaszlig2023-06-021-1/+1
| | | | | | | | Regression introduced by f72625079cc9cea8abe06d1a29b10530da538c15. I accidentally forgot about the vuizvui namespace in pkgs. Signed-off-by: aszlig <aszlig@nix.build>
* packages: Replace youtube-dl with yt-dlpaszlig2023-06-021-1/+1
| | | | | | | | | | I had yt-dlp in my local Nix profile since quite a while and didn't use youtube-dl at all since months. It's been so long that I actually forget about that, thinking I already did this very change already. Turns out, that I didn't, hence this commit. Signed-off-by: aszlig <aszlig@nix.build>
* psi: Update to latest Git masteraszlig2023-06-022-12/+12
| | | | | | | | | | | | | There is no particular reason for this other than me "feeling" that my version became somewhat old. From looking at the upstream diffs the changes are mostly fixes. However, I also updated the QDarkStyle plugin, which does have quite a few changes and the overall theming now looks lighter than before but still not in a way that feels like an annoyance. We'll see and revert if necessary. Signed-off-by: aszlig <aszlig@nix.build>
* firefox: Update Stylus addon to version 1.5.33aszlig2023-06-021-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upstream changes from 1.5.26 to 1.5.33: * Add year selector in popup search * Autocomplete fixes * CSSLint: 1.5x faster; supports nested &-selectors and nested @-rules * CSSLint: new color syntax, removed IE6-8 rules * CSSLint: new syntax for nested selectors * Ctrl-/ to toggle line comment will use the standard /* block syntax */ to avoid upstream bugs in less and stylus preprocessors * Don't open installer when browsing a non-raw .user.css URL on github * Editor: allow to change numbers via keyboard/wheel * Editor: autocomplete for less preprocessor will show @ variables * Editor: improvements and fixes for autocomplete * Editor: new option Arrow keys ↑↓ traverse sections * Fix CSP patching, color picker hue overflow, section naming, style size in manager after toggling, dark mode eye dropper * Fixed userstyles.org install button, again * Fixes for Stylus pages in Firefox + dark mode * Fixes for sync * Hide lint errors for @ vars with less preprocessor * New beautify options * New option: toggle .user.css URL installer * Properly update style preview in tab when its config changes * Show installed styles in the list of available styles in the popup finder * Style manager: added multi-column mode option * Style manager: added style size * Style manager: changed Number of applies-­to items option minimum from 1 to 0 * fix: installing github styles in subdirectory inside the repository * fix: styling of iframes in Firefox * fix: styling of same-origin iframes in Chrome * fix: styling of sandboxed iframes in Chrome before 86 * fixed installation on the redesigned userstyles.org * fixed saving of windowed editor position on a non-primary monitor * skip & report invalid styles on import Signed-off-by: aszlig <aszlig@nix.build>
* dnyarri: Switch to gpodder from Gitaszlig2023-06-024-6/+96
| | | | | | | | | I already had the latest Git version laying around in my Nix user profile, so it's battle-tested enough. The main reason why I did this is because it has much better support for yt-dlp, which I prefer to youtube-dl. Signed-off-by: aszlig <aszlig@nix.build>
* tests: remove config.boot.loader.grub.versiondevhell2023-05-201-3/+0
| | | | | | | `grub.version` was removed in [1], together with `grub1` in [2]. [1]: https://github.com/NixOS/nixpkgs/commit/30bea8d82d9e9ffa3093106af4527cbfc0663150 [2]: https://github.com/NixOS/nixpkgs/commit/6db74508276ae2c3c48cfea0a7022d01ca273264
* treewide: address rename of boot.cleanTmpDir optionsternenseemann2023-05-144-4/+4
| | | | cc @Profpatsch @aszlig
* pkgs/sternenseemann/scripts: clean up unused attributessternenseemann2023-05-141-23/+1
|
* pkgs/sternenseemann/scripts: widen backup ignores for ~/Videossternenseemann2023-05-141-1/+4
| | | | These are archived elsewhere and don't need to fill up the backup drive.
* pkgs/sternenseemann: use (vuizvui) pkgs.callPackagesternenseemann2023-05-142-5/+7
| | | | | This allows us to get the fix point for scripts from callPackage instead of building it ad hoc.
* pkgs/tvl: 2023-02-02 -> 2023-05-01sternenseemann2023-05-141-1/+1
|
* profiles/packages: remove vlcdevhell2023-05-131-1/+0
| | | | | | There's no need to have vlc permanently. I've not encountered issues with mpv for a very long time, so might as well move vlc to the backbench.
* profiles/packages: Remove gpodderdevhell2023-05-081-1/+0
| | | | | I'm not a fan of GTK apps, and now that `termusic` has really good podcast support I don't need gPodder anymore.
* profiles/base: boot.cleanTmpDir -> boot.tmp.cleanOnBootdevhell2023-05-081-1/+1
| | | | This option has been renamed upstream.
* profiles/packages: add nix-updatedevhell2023-05-031-1/+2
| | | | Magic.
* profiles/base: enable zramSwap everywheredevhell2023-04-292-2/+2
| | | | | This has been working just fine on gunnr, so let's see if that's also true for all my other machines.
* core/tests: Remove ihatemoneydevhell2023-04-181-3/+0
| | | | | This was removed from nixpkgs due to lack of downstream maintainer. Also, see https://github.com/NixOS/nixpkgs/pull/225285