aaaaaaaaaa
This commit is contained in:
parent
9fb7693dd1
commit
0949413682
20
flake.nix
20
flake.nix
|
@ -8,12 +8,12 @@
|
|||
home-manager.url = "github:nix-community/home-manager";
|
||||
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
easy-dhall-nix.url = "github:justinwoo/easy-dhall-nix";
|
||||
easy-dhall-nix.flake = false;
|
||||
# easy-dhall-nix.inputs.nixpkgs.follows = "nixpkgs";
|
||||
# easy-dhall-nix.url = "github:justinwoo/easy-dhall-nix";
|
||||
# easy-dhall-nix.flake = false;
|
||||
# # easy-dhall-nix.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
easy-purescript-nix.url = "github:justinwoo/easy-purescript-nix";
|
||||
easy-purescript-nix.flake = false;
|
||||
# easy-purescript-nix.url = "github:justinwoo/easy-purescript-nix";
|
||||
# easy-purescript-nix.flake = false;
|
||||
# easy-purescript-nix.inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
|
@ -21,16 +21,6 @@
|
|||
, easy-dhall-nix, ... }: {
|
||||
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
nixpkgs.overlays = [
|
||||
(self: super: {
|
||||
inputs = {
|
||||
inherit nixpkgs;
|
||||
inherit nixos-unstable;
|
||||
inherit easy-dhall-nix;
|
||||
inherit easy-purescript-nix;
|
||||
};
|
||||
})
|
||||
];
|
||||
modules = [
|
||||
home-manager.nixosModules.home-manager
|
||||
./hardware/laptop.nix
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{ ... }: {
|
||||
nixpkgs.overlays = [ import ./discord ];
|
||||
{ ... }:
|
||||
{
|
||||
# nixpkgs.overlays = [ import ./discord ];
|
||||
# imports = [ ./legacy.nix ];
|
||||
}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
self: super:
|
||||
|
||||
{
|
||||
discord = super.discord.overrideAttrs (old: rec {
|
||||
version = "0.0.15";
|
||||
let version = "0.0.15";
|
||||
in {
|
||||
discord = super.discord.overrideAttrs (old: {
|
||||
inherit version;
|
||||
src = builtins.fetchurl {
|
||||
url =
|
||||
"https://dl.discordapp.net/apps/linux/${version}/discord-${version}.tar.gz";
|
||||
|
|
Loading…
Reference in a new issue