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