Compare commits

..

No commits in common. "c028fc200dcfb2e595715436b919fcf802391646" and "bab66bc39066b0db9e10d15fb7652c8141a28f8c" have entirely different histories.

3 changed files with 1 additions and 38 deletions

View file

@ -38,17 +38,7 @@ outputs = {nixpkgs, agenix, home-manager, nixpkgs-unstable, nix-impermanence, ..
system = "x86_64-linux"; system = "x86_64-linux";
pkgs = import nixpkgs-unstable { pkgs = import nixpkgs-unstable {
system = "x86_64-linux"; system = "x86_64-linux";
config = { allowUnfree = true; }; # TODO: Find why this doesn't work config = { allowUnfree = true; }; # TODO: Find why this doesn't work
overlays =
let
discordOverlay = self: super: {
discord = super.discord.override {
withOpenASAR = true;
withVencord = true;
};
};
in
[ discordOverlay ];
}; };
modules = [ modules = [
# Needed for nix-index # Needed for nix-index
@ -56,7 +46,6 @@ outputs = {nixpkgs, agenix, home-manager, nixpkgs-unstable, nix-impermanence, ..
agenix.nixosModules.default agenix.nixosModules.default
home-manager.nixosModule home-manager.nixosModule
./roles/common ./roles/common
./roles/desktop
./roles/kde ./roles/kde
./machines/Archie ./machines/Archie
]; ];

View file

@ -1,7 +0,0 @@
{ ... }:
{
imports = [
./discord.nix
];
}

View file

@ -1,19 +0,0 @@
{ config, pkgs, ... }:
{
# TODO: Find out why this does not do anything. If I put this
# on flake.nix it does work, so it's not completely wrong.
/* nixpkgs.overlays =
let
discordOverlay = self: super: {
discord = super.discord.override {
withOpenASAR = true;
withVencord = true;
};
};
in
[ discordOverlay ]; */
users.users.toast.packages = with pkgs; [
discord
];
}