whalebird

This commit is contained in:
Rachel Lambda Samuelsson 2024-01-03 17:22:32 +01:00
parent c7d050e3ad
commit 403cd67696
3 changed files with 7 additions and 4 deletions

View File

@ -35,10 +35,9 @@
}; };
} }
); );
in in rec {
{
nixosConfigurations.lambda = nixpkgs.lib.nixosSystem rec { nixosConfigurations.lambda = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
modules = [ modules = [
nix-config-module nix-config-module
@ -49,7 +48,7 @@
]; ];
}; };
nixosConfigurations.computational = nixpkgs.lib.nixosSystem rec { nixosConfigurations.computational = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
modules = [ modules = [
nix-config-module nix-config-module

View File

@ -82,6 +82,7 @@ in
prismlauncher prismlauncher
vimv vimv
rzk rzk
whalebird
]; ];
stateVersion = "23.11"; stateVersion = "23.11";
}; };

View File

@ -47,6 +47,9 @@
}; };
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
nixpkgs.config.permittedInsecurePackages = [
"electron-21.4.4" # needed for whalebird
];
# [DESKTOP / XORG / WAYLAND] # [DESKTOP / XORG / WAYLAND]
services.xserver = { services.xserver = {