aboutsummaryrefslogtreecommitdiff
path: root/users/profiles/minimal.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-07-26 11:01:53 -0700
committerFranck Cuny <franck@fcuny.net>2025-07-26 11:01:53 -0700
commit17e871833d66f7fc6a6fcab043e51b196f103855 (patch)
tree1bcb86bbee7fade4015745536aa6ae33804a99fe /users/profiles/minimal.nix
parentfix alacritty configuration (diff)
downloadinfra-17e871833d66f7fc6a6fcab043e51b196f103855.tar.gz
moved every programs under users/programs
Configurations specific to work are managed in the work profile.
Diffstat (limited to 'users/profiles/minimal.nix')
-rw-r--r--users/profiles/minimal.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/users/profiles/minimal.nix b/users/profiles/minimal.nix
index ed67195..b751e91 100644
--- a/users/profiles/minimal.nix
+++ b/users/profiles/minimal.nix
@@ -1,7 +1,10 @@
-{ pkgs, ... }:
+{ self, pkgs, ... }:
{
- imports = [ ./bat.nix ];
+ imports = [
+ "${self}/users/programs/bat.nix"
+ ];
+
home.packages = with pkgs; [
htop
];