13 lines
156 B
Nix
13 lines
156 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
home.stateVersion = "22.05";
|
||
|
home.sessionVariables = {
|
||
|
};
|
||
|
home.packages = with pkgs; [
|
||
|
];
|
||
|
|
||
|
home.file = {
|
||
|
};
|
||
|
|
||
|
}
|