mirror of
https://github.com/youwen5/nixos.git
synced 2025-01-18 05:02:10 -08:00
24 lines
410 B
Nix
24 lines
410 B
Nix
{ self, ... }:
|
|
{
|
|
imports = [
|
|
self.homeManagerModules.liminalOS
|
|
];
|
|
|
|
home = {
|
|
username = "youwen";
|
|
homeDirectory = "/home/youwen";
|
|
};
|
|
|
|
liminalOS = {
|
|
utils.easyeffects.enable = true;
|
|
};
|
|
|
|
programs.git = {
|
|
userName = "Youwen Wu";
|
|
userEmail = "youwenw@gmail.com";
|
|
signing = {
|
|
signByDefault = true;
|
|
key = "8F5E6C1AF90976CA7102917A865658ED1FE61EC3";
|
|
};
|
|
};
|
|
}
|