NixOS + home-manager configs, mirrored from GitLab SaaS.
gitlab.com/andreijiroh-dev/nixops-config
nix-flake
nixos
home-manager
nixpkgs
nix-flakes
1{ pkgs, config, ... }:
2
3{
4 imports = [
5 ./bluetooth.nix
6 ./browsers.nix
7 ./firewall.nix
8 ./fonts.nix
9 ./yubikey.nix
10 ../flatpak.nix
11 ];
12
13 # List packages installed in system profile. To search, run:
14 # $ nix search wget
15 config = {
16 environment.systemPackages = with pkgs; [
17 thunderbird
18
19 libreoffice-qt6-fresh
20 hunspell
21 hunspellDicts.en_US
22
23 # android tools
24 android-tools
25 adbtuifm
26
27 # workaround: https://discourse.nixos.org/t/need-help-with-resolving-missing-dependencies-for-auto-patchelf-on-termius/69722/2?u=ajhalili2006
28 (pkgs.termius.overrideAttrs (oldAttrs: {
29 buildInputs = oldAttrs.buildInputs or [ ] ++ [ pkgs.sqlite ];
30 }))
31 ];
32 };
33}