Add an actual multi-user home configuration

This commit is contained in:
NullBite 2024-01-24 00:02:30 +01:00
parent 3ebd030fec
commit 991320105d
Signed by: nullbite
GPG Key ID: 6C4D545385D4925A
2 changed files with 15 additions and 1 deletions

10
home/comma.nix Normal file
View File

@ -0,0 +1,10 @@
{ lib, pkgs, config, inputs, ... } @args:
{
imports = [
inputs.nix-index-database.hmModules.nix-index
];
home.packages = with pkgs; [
comma
];
}

View File

@ -1,2 +1,6 @@
{ config, lib, pkgs, ... }@args:
{ }
{
imports = [
./comma.nix
];
}