add home/odie/bin to path

This commit is contained in:
Patrick Neff 2024-09-26 21:55:11 +02:00
parent 7466262972
commit 27de9e625b
1 changed files with 35 additions and 32 deletions

View File

@ -1,8 +1,8 @@
{
pkgs,
inputs,
outputs,
...
{ pkgs
, inputs
, outputs
, vars
, ...
}: {
imports = [
inputs.csleeptimer.homeManagerModules.default
@ -12,7 +12,7 @@
outputs.homeManagerModules.development
outputs.homeManagerModules.games
outputs.homeManagerModules.user
{
];
desktop = {
enable = true;
awesome = {
@ -35,9 +35,12 @@
};
theme.cursor.enable = false;
theme.gtk.enable = false;
home.packages = with pkgs; [
home = {
sessionVariables = {
PATH = "/home/${vars.username}/bin:$PATH";
};
packages = with pkgs; [
nix-serve
];
}
];
};
}