mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 00:03:55 +01:00
17 lines
357 B
Nix
17 lines
357 B
Nix
# TODO: Write test to ensure that Hyprland starts with basic config
|
|
(import ./lib.nix) {
|
|
name = "hyprland";
|
|
|
|
nodes.machine = { self, pkgs, ... }: {
|
|
imports = with self.nixosModules; [
|
|
system
|
|
desktop
|
|
];
|
|
};
|
|
|
|
testScript = /* python */ ''
|
|
output = machine.succeed("echo 'Hello world'")
|
|
assert "Hello world" in output
|
|
'';
|
|
}
|