15 lines
251 B
Nix
15 lines
251 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./home.nix
|
|
./desktop.nix
|
|
];
|
|
|
|
dconf.settings = {
|
|
"org/gnome/shell" = {
|
|
enabled-extensions = [ "Battery-Health-Charging@maniacx.github.com" ];
|
|
};
|
|
};
|
|
|
|
home.packages = with pkgs; [ calibre ];
|
|
}
|