flake: Remove firefox input and add dn42-pingfinder module to prefect
This commit is contained in:
parent
f68f9f90e4
commit
f4b5268adf
2 changed files with 11 additions and 23 deletions
26
flake.nix
26
flake.nix
|
@ -23,7 +23,6 @@
|
|||
doom-emacs.url = "github:nix-community/nix-doom-emacs";
|
||||
doom-emacs.inputs.nixpkgs.follows = "nixpkgs";
|
||||
emacs.url = "github:nix-community/emacs-overlay";
|
||||
firefox.url = "github:nixos/nixpkgs?rev=11b3d696526c97246a9cc5b2aaa42a0acf7bed8d";
|
||||
home-manager.url = "github:nix-community/home-manager";
|
||||
home-manager.inputs.nixpkgs.follows = "nixpkgs";
|
||||
mailserver.url = "gitlab:simple-nixos-mailserver/nixos-mailserver/master";
|
||||
|
@ -47,7 +46,6 @@
|
|||
dns,
|
||||
doom-emacs,
|
||||
emacs,
|
||||
firefox,
|
||||
home-manager,
|
||||
mailserver,
|
||||
neovim,
|
||||
|
@ -74,26 +72,7 @@
|
|||
overlays = [
|
||||
(import ./overlays/treesitter.nix)
|
||||
(import ./overlays/sumneko.nix)
|
||||
my-pkgs
|
||||
alejandra-overlay
|
||||
colmena-overlay
|
||||
emacs.overlay
|
||||
neovim.overlay
|
||||
nixpkgs-update-overlay
|
||||
nur.overlay
|
||||
wayland.overlays.default
|
||||
];
|
||||
};
|
||||
firefoxPkg = import firefox {
|
||||
localSystem = "x86_64-linux";
|
||||
config = {
|
||||
allowUnfree = true;
|
||||
input-fonts.acceptLicense = true;
|
||||
joypixels.acceptLicense = true;
|
||||
};
|
||||
overlays = [
|
||||
(import ./overlays/treesitter.nix)
|
||||
(import ./overlays/sumneko.nix)
|
||||
(import ./overlays/nyxt.nix)
|
||||
my-pkgs
|
||||
alejandra-overlay
|
||||
colmena-overlay
|
||||
|
@ -137,6 +116,7 @@
|
|||
modules = [
|
||||
./hosts/prefect/configuration.nix
|
||||
./hosts/prefect/bootloader.nix
|
||||
./modules/dn42-pingfinder.nix
|
||||
];
|
||||
specialArgs = {inherit self inputs pkgs;};
|
||||
};
|
||||
|
@ -154,7 +134,7 @@
|
|||
doom-emacs.hmModule
|
||||
nix-colors.homeManagerModule
|
||||
];
|
||||
home-manager.extraSpecialArgs = {inherit pkgs system inputs nix-colors firefoxPkg;};
|
||||
home-manager.extraSpecialArgs = {inherit pkgs system inputs nix-colors;};
|
||||
}
|
||||
];
|
||||
specialArgs = {inherit self inputs nix-colors;};
|
||||
|
|
8
overlays/nyxt.nix
Normal file
8
overlays/nyxt.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
self: super: {
|
||||
# lispPackages = super.lispPackages.overrideScope' (lself: lsuper: {
|
||||
# nyxt = lsuper.nyxt.overrideAttrs (old: {
|
||||
# version = "3-pre-release-2";
|
||||
# });
|
||||
# });
|
||||
|
||||
}
|
Loading…
Reference in a new issue