File tree Expand file tree Collapse file tree 7 files changed +43
-36
lines changed Expand file tree Collapse file tree 7 files changed +43
-36
lines changed Original file line number Diff line number Diff line change @@ -48,8 +48,6 @@ assurance is up to *you*.
48
48
49
49
# For reviewers:
50
50
51
- This repository has bors enabled for easier merging after a successfull build:
51
+ This repository has [ mergify ] ( https://mergify.com/ ) enabled for easier merging after a successfull build:
52
52
53
- * ` bors try ` - check if the PR builds.
54
- * ` bors merge ` - same as ` bors try ` but will also merge the PR if it builds successfully.
55
- * https://bors.tech/documentation/
53
+ * ` @mergify queue ` will add the current pull request to the merge queue and merge when all tests succeed
Original file line number Diff line number Diff line change
1
+ { ... } :
2
+ {
3
+ imports = [ ../. ] ;
4
+
5
+ # The open source driver does not support Fermi GPUs.
6
+ hardware . nvidia . open = false ;
7
+ }
Original file line number Diff line number Diff line change 3
3
imports = [
4
4
../default.nix
5
5
../../../../common/gpu/nvidia/prime.nix
6
+ ../../../../common/gpu/nvidia/ada-lovelace
6
7
] ;
7
8
8
9
hardware . nvidia . prime = {
Original file line number Diff line number Diff line change 2
2
{
3
3
imports = [
4
4
../../../common/cpu/intel
5
- ../../../common/gpu/nvidia # Is it possible/advisable to pin this to the 390.xx driver family in case the user wants to use non-free drivers?
5
+ ../../../common/gpu/nvidia/fermi # Is it possible/advisable to pin this to the 390.xx driver family in case the user wants to use non-free drivers?
6
6
../../../common/gpu/amd # The K330 could be bought with AMD GPUs but I don't have that configuration
7
7
../../../common/pc
8
8
] ;
14
14
# What if somebody installs both plasma AND another DE?
15
15
# The goal is to prefer x11 over wayland due to compatibility issues with the old hardware
16
16
17
-
17
+
18
18
services . displayManager . defaultSession = lib . mkIf config . services . xserver . desktopManager . plasma6 . enable ( lib . mkDefault "plasmax11" ) ;
19
- }
19
+ }
Original file line number Diff line number Diff line change 16
16
device = "/dev/disk/by-uuid/00000000-0000-0000-0000-000000000000" ;
17
17
fsType = "btrfs" ;
18
18
} ;
19
- system . stateVersion = lib . version ;
19
+ system . stateVersion = config . system . nixos . release ;
20
20
} )
21
21
] ) . config . system . build . toplevel
Original file line number Diff line number Diff line change 2
2
description = "Test flake for nixos-hardware" ;
3
3
4
4
inputs = {
5
- nixos-unstable-small . url = "github: NixOS/nixpkgs/ nixos-unstable-small" ;
6
- nixos-stable . url = "github: NixOS/nixpkgs/ nixos-24.05 " ;
5
+ nixos-unstable-small . url = "git+https://github.com/ NixOS/nixpkgs?shallow=1&ref= nixos-unstable-small" ;
6
+ nixos-stable . url = "git+https://github.com/ NixOS/nixpkgs?shallow=1&ref= nixos-24.11 " ;
7
7
# override in the test
8
8
nixos-hardware . url = "github:NixOS/nixos-hardware" ;
9
9
flake-parts . url = "github:hercules-ci/flake-parts" ;
23
23
system ,
24
24
lib ,
25
25
pkgs ,
26
- inputs' ,
27
26
...
28
27
} :
29
28
let
You can’t perform that action at this time.
0 commit comments