Skip to content

Commit

Permalink
feat: Add testing disko module + comment redyf disko module
Browse files Browse the repository at this point in the history
  • Loading branch information
redyf committed Feb 9, 2024
1 parent d37a2c7 commit c68fb48
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -136,17 +136,25 @@
# Add a module to a specific host.
systems = {
hosts = {
redyf = {
# redyf = {
# modules = with inputs; [
# (import ./disks/default.nix {
# inherit lib;
# device = "/dev/nvme0n1";
# })
# ];
# };
wsl = {
modules = with inputs; [
(import ./disks/default.nix {
inherit lib;
device = "/dev/nvme0n1";
})
nixos-wsl.nixosModules.wsl
];
};
wsl = {
testing = {
modules = with inputs; [
nixos-wsl.nixosModules.wsl
(import ./disks/default.nix {
inherit lib;
device = "/dev/vda";
})
];
};
vm = {
Expand Down

0 comments on commit c68fb48

Please sign in to comment.