chore: move liminalOS template to minimal

This commit is contained in:
Youwen Wu 2024-12-31 16:49:00 -08:00
parent b92370f2b1
commit 1e2bd1ad1f
Signed by: youwen
GPG key ID: 865658ED1FE61EC3
4 changed files with 0 additions and 60 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";
}