From 991320105dc21f32578484765dba0e140296f407 Mon Sep 17 00:00:00 2001 From: NullBite Date: Wed, 24 Jan 2024 00:02:30 +0100 Subject: [PATCH] Add an actual multi-user home configuration --- home/comma.nix | 10 ++++++++++ home/root.nix | 6 +++++- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 home/comma.nix diff --git a/home/comma.nix b/home/comma.nix new file mode 100644 index 0000000..203f26a --- /dev/null +++ b/home/comma.nix @@ -0,0 +1,10 @@ +{ lib, pkgs, config, inputs, ... } @args: +{ + imports = [ + inputs.nix-index-database.hmModules.nix-index + ]; + + home.packages = with pkgs; [ + comma + ]; +} diff --git a/home/root.nix b/home/root.nix index f857ce8..266a894 100644 --- a/home/root.nix +++ b/home/root.nix @@ -1,2 +1,6 @@ { config, lib, pkgs, ... }@args: -{ } +{ + imports = [ + ./comma.nix + ]; +}