summaryrefslogtreecommitdiff
path: root/profiles/base/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'profiles/base/default.nix')
-rw-r--r--profiles/base/default.nix35
1 files changed, 0 insertions, 35 deletions
diff --git a/profiles/base/default.nix b/profiles/base/default.nix
deleted file mode 100644
index 3d41319..0000000
--- a/profiles/base/default.nix
+++ /dev/null
@@ -1,35 +0,0 @@
-{pkgs, ...}: let
- channelPath = "/etc/nix/channels/nixpkgs";
-in {
- imports = [
- ./documentation.nix
- ./packages.nix
- ];
-
- nix = {
- package = pkgs.nixFlakes;
- gc = {
- automatic = true;
- dates = "weekly";
- options = "--delete-older-than 7d";
- };
- settings = {
- auto-optimise-store = true;
- warn-dirty = false;
- experimental-features = ["nix-command" "flakes"];
- trusted-substituters = [
- "https://nix-community.cachix.org"
- ];
- trusted-public-keys = [
- "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
- ];
- };
- nixPath = [
- "nixpkgs=${channelPath}"
- ];
- };
-
- systemd.tmpfiles.rules = [
- "L+ ${channelPath} - - - - ${pkgs.path}"
- ];
-}