user: add comma to packages
This commit is contained in:
parent
7bcabeda5d
commit
28303695e5
1 changed files with 3 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ lib, config, ... }:
|
{ lib, config, pkgs, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
cfg = config.snowhawk.user;
|
cfg = config.snowhawk.user;
|
||||||
|
@ -19,6 +19,8 @@ in
|
||||||
home.username = lib.mkDefault cfg.username;
|
home.username = lib.mkDefault cfg.username;
|
||||||
home.homeDirectory = lib.mkDefault "/home/${cfg.username}";
|
home.homeDirectory = lib.mkDefault "/home/${cfg.username}";
|
||||||
|
|
||||||
|
home.packages = with pkgs; [ comma ];
|
||||||
|
|
||||||
home.sessionPath = [
|
home.sessionPath = [
|
||||||
"${config.home.homeDirectory}/.cargo/bin"
|
"${config.home.homeDirectory}/.cargo/bin"
|
||||||
"${config.home.homeDirectory}/.dotnet/tools"
|
"${config.home.homeDirectory}/.dotnet/tools"
|
||||||
|
|
Loading…
Reference in a new issue