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..f3aef75
--- /dev/null
+++ b/home/profiles/minimal.nix
@@ -0,0 +1,13 @@
+{ config, ... }:
+let
+ inherit (config.home) username;
+in
+{
+ imports = [
+ ./bat.nix
+ ./eza.nix
+ ];
+
+ home.homeDirectory = "/home/${username}";
+ home.stateVersion = "25.05";
+}