liminalOS/templates/minimal/home.nix

26 lines
508 B
Nix
Raw Normal View History

2024-12-26 00:46:15 -08:00
{ inputs, ... }:
{
imports = [
# import the liminalOS home manager module
inputs.liminalOS.homeManagerModules.default
];
home = {
username = "default-user";
homeDirectory = "/home/default-user";
};
liminalOS = {
# Enable the easyeffects program to easily EQ your headphones and add
# microphone effects
utils.easyeffects.enable = true;
};
programs.git = {
userName = "Default User";
userEmail = "default@localhost";
};
home.stateVersion = "24.05";
}