NixOS + home-manager configs, mirrored from GitLab SaaS. gitlab.com/andreijiroh-dev/nixops-config
nix-flake nixos home-manager nixpkgs nix-flakes
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(shared): setup shared meta imports

Also in this commit:
- move YubiKeys related configs to desktop and import at
the base desktop config

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>

+16
+1
shared/desktop/base.nix
··· 6 6 ./firefox.nix 7 7 ./firewall.nix 8 8 ./fonts.nix 9 + ./yubikey.nix 9 10 ]; 10 11 11 12 # List packages installed in system profile. To search, run:
+15
shared/meta.nix
··· 1 + # One Nix file to import all the base configs without cluttering the per-host 2 + # imports. 3 + { ... }: 4 + 5 + { 6 + imports = [ 7 + ./meta-configs.nix 8 + ./flatpak.nix 9 + ./gnupg.nix 10 + ./locale.nix 11 + ./networking.nix 12 + ./systemd.nix 13 + ./shells/bash.nix 14 + ]; 15 + }
shared/yubikey.nix shared/desktop/yubikey.nix