6291076494
Comment out handbrake installation because the current ffmpeg-full-8.1.2 version in nixpkgs contains a broken A01-mov-read patch that prevents successful builds. This is a temporary measure until nixpkgs is updated or the system is switched to a stable channel.
25 lines
454 B
Nix
25 lines
454 B
Nix
{ self, inputs, ... }:
|
|
{
|
|
flake.nixosModules.t2mbpHome =
|
|
{ self, ... }:
|
|
{
|
|
imports = [ self.nixosModules.desktopHomeBase ];
|
|
|
|
chiasson.users.extraModules.olivier = [
|
|
{
|
|
chiasson.home = {
|
|
browsers = {
|
|
edge.enable = true;
|
|
};
|
|
|
|
apps = {
|
|
discord.enable = true;
|
|
pokeclicker.enable = true;
|
|
};
|
|
};
|
|
}
|
|
];
|
|
|
|
};
|
|
}
|