Overlay to get access to unstable branch, added Ghostty as dep

This commit is contained in:
Martin Berg Alstad 2025-01-04 23:36:16 +01:00
parent 08d1afd90f
commit fdebb57cad
Signed by: martials
GPG Key ID: A3824877B269F2E2
2 changed files with 17 additions and 0 deletions

View File

@ -4,6 +4,7 @@
{ {
pkgs, pkgs,
outputs,
... ...
}: }:
@ -22,6 +23,8 @@
./sddm.nix ./sddm.nix
]; ];
nixpkgs.overlays = [ outputs.overlays.unstable-packages ];
# Bootloader. # Bootloader.
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
@ -60,6 +63,7 @@
gnupg gnupg
wget wget
kitty kitty
unstable.ghostty
xdg-utils xdg-utils
xdg-desktop-portal-gtk xdg-desktop-portal-gtk
kdePackages.qtwayland kdePackages.qtwayland

View File

@ -16,6 +16,7 @@
outputs = outputs =
inputs@{ inputs@{
self, # Get a ref to outputs
nixpkgs, nixpkgs,
home-manager, home-manager,
stylix, stylix,
@ -23,12 +24,15 @@
}: }:
let let
system = "x86_64-linux"; system = "x86_64-linux";
inherit (self) outputs;
in in
{ {
# Adds the nix fmt command to format nix files # Adds the nix fmt command to format nix files
formatter."${system}" = nixpkgs.legacyPackages."${system}".nixfmt-rfc-style; formatter."${system}" = nixpkgs.legacyPackages."${system}".nixfmt-rfc-style;
nixosConfigurations.nixos = nixpkgs.lib.nixosSystem { nixosConfigurations.nixos = nixpkgs.lib.nixosSystem {
system = system; system = system;
specialArgs = { inherit outputs; }; # Pass args to modules
modules = [ modules = [
./configuration.nix ./configuration.nix
home-manager.nixosModules.home-manager home-manager.nixosModules.home-manager
@ -46,5 +50,14 @@
stylix.nixosModules.stylix stylix.nixosModules.stylix
]; ];
}; };
overlays = {
unstable-packages = final: _prev: {
unstable = import inputs.nixpkgs {
system = final.system;
config.allowUnfree = true;
};
};
};
}; };
} }