mirror of
https://github.com/youwen5/liminalOS.git
synced 2025-06-20 14:09:51 -07:00
feat: add template
This commit is contained in:
parent
512b0e3aa1
commit
3372af8c03
6 changed files with 238 additions and 5 deletions
25
templates/liminalOS/home.nix
Normal file
25
templates/liminalOS/home.nix
Normal 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";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue