all repos — dotfiles @ 6df9b75dd6860e4e6075b6e0d19154bfeb229a00

my *nix dotfiles

nix: try overriding pixelfed package
Anirudh Oppiliappan x@icyphox.sh
Wed, 03 Jul 2024 23:52:45 +0300
commit

6df9b75dd6860e4e6075b6e0d19154bfeb229a00

parent

dcd495a6a7f358f1f0d1f4dcd961e3cf6d9b7b63

1 files changed, 5 insertions(+), 0 deletions(-)

jump to
M flake.nixflake.nix

@@ -3,6 +3,7 @@ description = "icy's nixos config";

inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; + nixpkgs-master.url = "github:NixOS/nixpkgs/master"; nixos-hardware.url = "github:nixos/nixos-hardware";

@@ -36,6 +37,7 @@

outputs = { self , nixpkgs + , nixpkgs-master , nixos-hardware , nix-snapshotter , nix-your-shell

@@ -122,6 +124,9 @@ sini = nixpkgs.lib.nixosSystem {

system = "x86_64-linux"; modules = [ ({ config = { nix.registry.nixpkgs.flake = nixpkgs; }; }) + ({ config, pkgs, ... }: { + services.pixelfed.package = nixpkgs-master.legacyPackages."x86_64-linux".pixelfed; + }) # ({ pkgs, ... }: { # imports = [ nix-snapshotter.nixosModules.default ]; # nixpkgs.overlays = [ nix-snapshotter.overlays.default ];