Skip to content

Commit e724082

Browse files
committed
configuration fixes and nix flake check
1 parent e4d84b0 commit e724082

File tree

3 files changed

+12
-13
lines changed

3 files changed

+12
-13
lines changed

.github/workflows/nix-build.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
name: nix eval all configurations
1+
name: nix flake check
22

33
on:
4+
push:
5+
branches: [ "master" ]
46
pull_request:
57
branches: [ "master" ]
68

@@ -21,11 +23,5 @@ jobs:
2123
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
2224
experimental-features = nix-command flakes
2325
24-
- name: nix eval .#nixosConfigurations.nixos-desktop
25-
run: nix eval .#nixosConfigurations.nixos-desktop
26-
27-
- name: nix eval .#nixosConfigurations.nixos-laptop
28-
run: nix eval .#nixosConfigurations.nixos-laptop
29-
30-
- name: nix eval .#nixosConfigurations.nixos-steamdeck
31-
run: nix eval .#nixosConfigurations.nixos-steamdeck
26+
- name: nix flake check
27+
run: nix flake check

configuration/nixpkgs.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
"libretro-mame2003"
2929
"libretro-mame2015"
3030
"vscode"
31+
"via"
3132
];
3233
};
3334
overlays = [

steamdeck/configuration/nix.nix

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
{ config, pkgs, lib, inputs, ... }:
1+
{ config
2+
, pkgs
3+
, lib
4+
, inputs
5+
, ...
6+
}:
27

38
{
49
nix = {
@@ -23,8 +28,5 @@
2328
sshKey = "/home/codebam/.ssh/id_ed25519";
2429
}
2530
];
26-
settings = {
27-
max-jobs = 0;
28-
};
2931
};
3032
}

0 commit comments

Comments
 (0)