feat: add template

This commit is contained in:
Youwen Wu 2024-12-26 00:46:15 -08:00
parent 512b0e3aa1
commit 3372af8c03
Signed by: youwen
GPG key ID: 865658ED1FE61EC3
6 changed files with 238 additions and 5 deletions

View file

@ -0,0 +1,25 @@
{ 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";
}