mirror of
https://github.com/youwen5/nixos.git
synced 2025-01-17 20:52:09 -08:00
25 lines
508 B
Nix
25 lines
508 B
Nix
{ 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";
|
|
}
|