From cbd0958e169626fc09679dd13b40db02f4080212 Mon Sep 17 00:00:00 2001 From: harry123 Date: Wed, 1 Jan 2025 19:45:47 +0100 Subject: [PATCH] added unstable and fixed discord --- flake.lock | 17 +++++++++++++++++ flake.nix | 1 + hosts/goober/features/software/default.nix | 2 +- hosts/goober/features/software/discord.nix | 1 - 4 files changed, 19 insertions(+), 2 deletions(-) diff --git a/flake.lock b/flake.lock index 9139315..feb976d 100644 --- a/flake.lock +++ b/flake.lock @@ -430,6 +430,22 @@ "type": "github" } }, + "nixpkgsUnstable": { + "locked": { + "lastModified": 1735471104, + "narHash": "sha256-0q9NGQySwDQc7RhAV2ukfnu7Gxa5/ybJ2ANT8DQrQrs=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "88195a94f390381c6afcdaa933c2f6ff93959cb4", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, "nixpkgs_2": { "locked": { "lastModified": 1735531152, @@ -474,6 +490,7 @@ "nixos-generators": "nixos-generators", "nixpkgs": "nixpkgs_2", "nixpkgsSmall": "nixpkgsSmall", + "nixpkgsUnstable": "nixpkgsUnstable", "sops-nix": "sops-nix" } }, diff --git a/flake.nix b/flake.nix index 15320f8..edd13df 100644 --- a/flake.nix +++ b/flake.nix @@ -4,6 +4,7 @@ inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11"; nixpkgsSmall.url = "github:NixOS/nixpkgs/nixos-24.11-small"; + nixpkgsUnstable.url = "github:NixOS/nixpkgs/nixos-unstable"; sops-nix.url = "github:Mic92/sops-nix"; home-manager.url = "github:nix-community/home-manager/release-24.11"; diff --git a/hosts/goober/features/software/default.nix b/hosts/goober/features/software/default.nix index 211d816..84fecea 100644 --- a/hosts/goober/features/software/default.nix +++ b/hosts/goober/features/software/default.nix @@ -3,6 +3,6 @@ imports = [ ./neovim.nix ./flatpak.nix - # ./discord.nix + ./discord.nix ]; } diff --git a/hosts/goober/features/software/discord.nix b/hosts/goober/features/software/discord.nix index 6472a05..83e5ea2 100644 --- a/hosts/goober/features/software/discord.nix +++ b/hosts/goober/features/software/discord.nix @@ -2,7 +2,6 @@ { environment.systemPackages = with pkgs; [ (discord.override { - withOpenASAR = true; # can do this here too withVencord = true; }) ];