Add audio packages, enable home-manager stuff

This commit is contained in:
Patrick Menking 2024-09-17 10:08:46 -04:00
parent 0fe8811b69
commit 86c1af2c53
4 changed files with 46 additions and 13 deletions

17
modules/home/crow.nix Normal file
View file

@ -0,0 +1,17 @@
{pkgs, ...}: let
username = "crow";
homeDirectory = "/home/${username}";
configHome = "${homeDirectory}/.config";
in {
home = {
inherit username homeDirectory;
stateVersion = system.stateVersion;
};
xdg = {
inherit configHome;
enable = true;
}
programs = {};
}

9
modules/home/default.nix Normal file
View file

@ -0,0 +1,9 @@
{ config, ... }: {
imports = [
(
if config.users.crow.home.enable then
./crow.nix
);
# ++ ( to add more, just move the ;
];
}