Skip to content

Commit

Permalink
Add release targets for the Dell Latitudes
Browse files Browse the repository at this point in the history
Signed-off-by: Brian McGillion <[email protected]>
  • Loading branch information
brianmcgillion committed Jul 26, 2024
1 parent 8cf7c63 commit 7383179
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions targets/laptop/flake-module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
laptop-configuration = import ./laptop-configuration-builder.nix {inherit lib self;};

targets = [
# Laptop Debug configurations
(laptop-configuration "lenovo-x1-carbon-gen10" "debug" [
self.nixosModules.disko-basic-partition-v1
{
Expand All @@ -30,6 +31,26 @@
};
}
])
(laptop-configuration "dell-latitude-7230" "debug" [
self.nixosModules.disko-basic-partition-v1
{
ghaf = {
hardware.definition.configFile = "/definitions/dell-latitude/dell-latitude-7230.nix";
profiles.mvp-user-trial.enable = true;
};
}
])
(laptop-configuration "dell-latitude-7330" "debug" [
self.nixosModules.disko-basic-partition-v1
{
ghaf = {
hardware.definition.configFile = "/definitions/dell-latitude/dell-latitude-7330.nix";
profiles.mvp-user-trial.enable = true;
};
}
])

# Laptop Release configurations
(laptop-configuration "lenovo-x1-carbon-gen10" "release" [
self.nixosModules.disko-basic-partition-v1
{
Expand All @@ -48,7 +69,7 @@
};
}
])
(laptop-configuration "dell-latitude-7230" "debug" [
(laptop-configuration "dell-latitude-7230" "release" [
self.nixosModules.disko-basic-partition-v1
{
ghaf = {
Expand All @@ -57,7 +78,7 @@
};
}
])
(laptop-configuration "dell-latitude-7330" "debug" [
(laptop-configuration "dell-latitude-7330" "release" [
self.nixosModules.disko-basic-partition-v1
{
ghaf = {
Expand Down

0 comments on commit 7383179

Please sign in to comment.