make sure all configurations build

This commit is contained in:
Cyryl Płotnicki 2023-08-12 16:33:17 +01:00
parent d12b77c6c1
commit d43f1b2867
2 changed files with 5 additions and 2 deletions

View file

@ -133,7 +133,6 @@
bolty = mkServer nixpkgs-stable "x86_64-linux" "bolty";
vpsfree1 = mkServer nixpkgs-stable"x86_64-linux" "vpsfree1";
mb1 = mkServer nixpkgs-stable "x86_64-linux" "mb1";
yoga = mkKiosk nixpkgs-stable "x86_64-linux" "yoga";
homescreen = mkRaspi nixpkgs-stable "homescreen";
bootstrap = nixpkgs-stable.lib.nixosSystem rec {

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }: {
{ config, pkgs, lib,... }: {
networking.hostName = "thinky";
imports = [
@ -24,6 +24,10 @@
algorithm = "zstd";
memoryPercent = 50;
};
nixpkgs.config.allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [
"spotify"
];
home-manager.users.cyryl = { ... }: {
imports = [ ../../home-manager/programs/termite.nix ];
};