diff options
author | sefidel <contact@sefidel.net> | 2023-08-21 19:20:36 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-08-21 19:22:01 +0900 |
commit | bc4039ae8c86f794cece9d9ceb43b838e61cf445 (patch) | |
tree | 3991ec87c676fcfbb22a72de866ca0e14b137403 /nixos/modules/flakes.nix | |
parent | 76dc3decd5e8b9d0494cd65be2303784f64d1a24 (diff) | |
download | nixrc-bc4039ae8c86f794cece9d9ceb43b838e61cf445.tar.gz nixrc-bc4039ae8c86f794cece9d9ceb43b838e61cf445.zip |
chore: nixos/modules -> modules
Diffstat (limited to 'nixos/modules/flakes.nix')
-rw-r--r-- | nixos/modules/flakes.nix | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/nixos/modules/flakes.nix b/nixos/modules/flakes.nix deleted file mode 100644 index 76f89f3..0000000 --- a/nixos/modules/flakes.nix +++ /dev/null @@ -1,35 +0,0 @@ -{ config, pkgs, unstable, unstable-small, nixpkgs-2211, lib, ... }: - -let - base = "/etc/nixpkgs/channels"; - nixpkgsPath = "${base}/nixpkgs"; - nixpkgsSmallPath = "${base}/nixpkgsSmall"; - nixpkgs2211Path = "${base}/nixpkgs2211"; -in -{ - options.nix.flakes.enable = lib.mkEnableOption "nix flakes"; - - config = lib.mkIf config.nix.flakes.enable { - nix = { - package = pkgs.nixUnstable; - experimentalFeatures = "nix-command flakes"; - - registry.nixpkgs.flake = unstable; - registry.nixpkgsSmall.flake = unstable-small; - registry.nixpkgs2211.flake = nixpkgs-2211; - - nixPath = [ - "nixpkgs=${nixpkgsPath}" - "nixpkgsSmall=${nixpkgsSmallPath}" - "nixpkgs2211=${nixpkgs2211Path}" - "/nix/var/nix/profiles/per-user/root/channels" - ]; - }; - - systemd.tmpfiles.rules = [ - "L+ ${nixpkgsPath} - - - - ${unstable}" - "L+ ${nixpkgsSmallPath} - - - - ${unstable-small}" - "L+ ${nixpkgs2211Path} - - - - ${nixpkgs-2211}" - ]; - }; -} |