summaryrefslogtreecommitdiff
path: root/profiles/base
diff options
context:
space:
mode:
Diffstat (limited to 'profiles/base')
-rw-r--r--profiles/base/default.nix35
-rw-r--r--profiles/base/documentation.nix7
-rw-r--r--profiles/base/packages.nix24
3 files changed, 0 insertions, 66 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}"
- ];
-}
diff --git a/profiles/base/documentation.nix b/profiles/base/documentation.nix
deleted file mode 100644
index bd22316..0000000
--- a/profiles/base/documentation.nix
+++ /dev/null
@@ -1,7 +0,0 @@
-{pkgs, ...}: {
- environment.systemPackages = with pkgs; [man-pages man-pages-posix];
- documentation = {
- dev.enable = true;
- man.enable = true;
- };
-}
diff --git a/profiles/base/packages.nix b/profiles/base/packages.nix
deleted file mode 100644
index 7cc6d59..0000000
--- a/profiles/base/packages.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{
- lib,
- pkgs,
- ...
-}: {
- environment.systemPackages = with pkgs; [
- cachix
- hyfetch
- neofetch
- pinentry-curses
- python311
- ];
-
- programs = {
- git.enable = true;
- gnupg = {
- agent = {
- enable = true;
- pinentryFlavor = lib.mkDefault "curses";
- };
- };
- vim.defaultEditor = true;
- };
-}