aboutsummaryrefslogtreecommitdiff
path: root/home/profiles/minimal.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home/profiles/minimal.nix')
-rw-r--r--home/profiles/minimal.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/home/profiles/minimal.nix b/home/profiles/minimal.nix
new file mode 100644
index 0000000..86c63a3
--- /dev/null
+++ b/home/profiles/minimal.nix
@@ -0,0 +1,13 @@
+{ self, pkgs, ... }:
+{
+
+ imports = [
+ "${self}/home/programs/bat.nix"
+ ];
+
+ home.packages = with pkgs; [
+ htop
+ ];
+
+ home.stateVersion = "25.05";
+}