31 lines
398 B
Nix
31 lines
398 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
user,
|
|
inputs,
|
|
flakeRoot,
|
|
...
|
|
}:
|
|
|
|
{
|
|
imports = [
|
|
./boot.nix
|
|
./hardware-configuration.nix
|
|
./machine.nix
|
|
./dbus.nix
|
|
./audio.nix
|
|
./xdg.nix
|
|
./session.nix
|
|
./networking.nix
|
|
./gtk.nix
|
|
./catppuccin.nix
|
|
inputs.home-manager.nixosModules.home-manager
|
|
];
|
|
|
|
catppuccin = {
|
|
enable = true;
|
|
flavor = "mocha";
|
|
};
|
|
}
|