Let's try this instead...
This commit is contained in:
parent
eda72f9018
commit
25fedc1cc4
|
@ -107,7 +107,7 @@
|
|||
nixosConfigurations = {
|
||||
queen = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = {inherit inputs outputs;};
|
||||
specialArgs = {inherit inputs outputs nixpkgs-stable;};
|
||||
modules = [
|
||||
# > Our main nixos configuration file <
|
||||
./nixos/hosts/queen/configuration.nix
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
nixpkgs-stable,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
|
@ -84,7 +85,7 @@
|
|||
};
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs.stable; [
|
||||
environment.systemPackages = with nixpkgs-stable; [
|
||||
akkoma
|
||||
age
|
||||
fzf
|
||||
|
|
Loading…
Reference in a new issue