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.

one quick fix please

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

+1 -4
+1 -4
shared/meta-configs.nix
··· 3 3 4 4 { config, pkgs, lib, ... }: 5 5 6 - let 7 - flake = builtins.getFlake (toString ./.); 8 - in 9 6 { 10 7 # Adopted from https://fnordig.de/til/nix/home-manager-allow-unfree.html, 11 8 # but we'll also enable it system-wide too. ··· 88 85 89 86 # Needed since Determinate Nix manages the main config file for system. 90 87 environment.etc."nix/nix.custom.conf" = { 91 - source = "${flake}/misc/nix/nix.custom.conf"; 88 + source = ./misc/nix/nix.custom.conf; 92 89 mode = "0644"; 93 90 }; 94 91 }